wiki: Visual cleanup of pages listing.

This commit is contained in:
Andre D
2012-09-13 01:31:05 -05:00
committed by Neil Williams
parent e36780f4c4
commit 512c147b9d
3 changed files with 29 additions and 10 deletions

View File

@@ -131,13 +131,14 @@ class WikiListing(WikiBase):
def __init__(self, pages, **context):
content = WikiPageListing(pages)
context['wikiaction'] = ('pages', _("Viewing pages for /r/%s") % c.wiki_id)
WikiBase.__init__(self, content, showtitle=True, **context)
description = [_("Below is a list of pages in this wiki visible to you in this subreddit.")]
WikiBase.__init__(self, content, description=description, showtitle=True, **context)
class WikiDiscussions(WikiBase):
def __init__(self, listing, **context):
content = WikiPageDiscussions(listing)
context['wikiaction'] = ('discussions', _("discussions"))
description = _("Discussions are site-wide links to this wiki page.<br/>\
Submit a link to this wiki page or see other discussions about this wiki page.")
description = [_("Discussions are site-wide links to this wiki page."),
_("Submit a link to this wiki page or see other discussions about this wiki page.")]
WikiBase.__init__(self, content, description=description, **context)

View File

@@ -945,6 +945,21 @@ a.author { margin-right: 0.5em; }
margin: 15px;
}
.wiki-page-content .pagelisting {
font-size: 1.2em;
font-weight: bold;
color: black;
padding-left: 25px;
}
.wiki-page-content .description h2 {
color: #222;
}
.wiki-page-content .description {
padding-bottom: 5px;
}
.wikirevisionlisting .generic-table {
width: 100%;
}
@@ -981,6 +996,7 @@ a.author { margin-right: 0.5em; }
display: inline-block;
margin-left: 15px;
padding-right: 50px;
margin-top: 5px;
}
.discussionlink a {

View File

@@ -53,14 +53,16 @@
%endif
</span>
<br/>
%if thing.description:
<br/>
<span><h2>${unsafe(thing.description)}</h2></span>
%endif
<div class="wiki-page-content">
%if thing.description:
<div class="description">
<h2>
%for desc in thing.description:
${desc}<br/>
%endfor
</h2>
</div>
%endif
${thing.content}
</div>