Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
f7996b58
Commit
f7996b58
authored
Mar 01, 2012
by
Kyle Fiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added a fix for the wiki topbar
parent
6446972d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
16 deletions
+17
-16
sass/wiki/_wiki.scss
+1
-0
simplewiki_base.html
+16
-16
No files found.
sass/wiki/_wiki.scss
View file @
f7996b58
...
...
@@ -12,6 +12,7 @@ div.wiki-wrapper {
&
:empty
{
display
:
none
!
important
;
border-bottom
:
0
;
}
a
{
...
...
simplewiki_base.html
View file @
f7996b58
...
...
@@ -137,31 +137,31 @@
</
%
block>
<section
class=
"wiki-body"
>
<header>
%if wiki_article is not UNDEFINED:
<header>
%if wiki_article.locked:
<p><strong>
This article has been locked
</strong></p>
<p><strong>
This article has been locked
</strong></p>
%endif
<p>
Last modified: ${wiki_article.modified_on.strftime("%b %d, %Y, %I:%M %p")}
</p>
<p>
Last modified: ${wiki_article.modified_on.strftime("%b %d, %Y, %I:%M %p")}
</p>
%endif
%if wiki_article is not UNDEFINED:
<ul>
%if wiki_article is not UNDEFINED:
<ul>
<li>
<input
type=
"button"
onclick=
"javascript:location.href='${reverse("
wiki_view
",
args=
[wiki_article.get_url()])}'"
value=
"View"
class=
"view"
/>
</li>
<li>
<input
type=
"button"
onclick=
"javascript:location.href='${reverse("
wiki_view
",
args=
[wiki_article.get_url()])}'"
value=
"View"
class=
"view"
/>
</li>
<li>
<input
type=
"button"
onclick=
"javascript:location.href='${reverse("
wiki_edit
",
args=
[wiki_article.get_url()])}'"
value=
"Edit"
${'
disabled=
"true"
'
if
not
wiki_write
else
""}
class=
"edit"
/>
</li>
<li>
<input
type=
"button"
onclick=
"javascript:location.href='${reverse("
wiki_edit
",
args=
[wiki_article.get_url()])}'"
value=
"Edit"
${'
disabled=
"true"
'
if
not
wiki_write
else
""}
class=
"edit"
/>
</li>
<li>
<input
type=
"button"
onclick=
"javascript:location.href='${reverse("
wiki_history
",
args=
[wiki_article.get_url(),1])}'"
value=
"History"
class=
"button history"
/>
</li>
</ul>
<li>
<input
type=
"button"
onclick=
"javascript:location.href='${reverse("
wiki_history
",
args=
[wiki_article.get_url(),1])}'"
value=
"History"
class=
"button history"
/>
</li>
</ul>
</header>
%endif
</header>
<h1
class=
"wiki-title"
><
%
block
name=
"wiki_page_title"
/></h1>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment