quest page displays post dates
This commit is contained in:
parent
355ff7aac8
commit
7d19270a69
|
@ -29,6 +29,15 @@
|
||||||
padding-right: 32%;
|
padding-right: 32%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#questPosts {
|
||||||
|
border-spacing: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.questPostTime {
|
||||||
|
vertical-align: top;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
#newQPostArea {
|
#newQPostArea {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -67,15 +67,18 @@
|
||||||
<div id="questContainer">
|
<div id="questContainer">
|
||||||
<div id="questBody">
|
<div id="questBody">
|
||||||
<h1>{{ quest_title }}</h1>
|
<h1>{{ quest_title }}</h1>
|
||||||
<div id="questPosts">
|
<table id="questPosts">
|
||||||
{% for quest_post in quest_posts %}
|
{% for quest_post in quest_posts %}
|
||||||
|
<tr>
|
||||||
|
<td class="questPostTime">{{ quest_post[2] | strftime }}</td>
|
||||||
|
<td class="questPostData">
|
||||||
{% autoescape false %}
|
{% autoescape false %}
|
||||||
<div class="questPost">
|
|
||||||
{{ quest_post[1] }}
|
{{ quest_post[1] }}
|
||||||
</div>
|
|
||||||
{% endautoescape %}
|
{% endautoescape %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</table>
|
||||||
{% if session.get("user_id") == owner_id %}
|
{% if session.get("user_id") == owner_id %}
|
||||||
<div id="postTextDiv">
|
<div id="postTextDiv">
|
||||||
<textarea id="postTextArea"></textarea><br />
|
<textarea id="postTextArea"></textarea><br />
|
||||||
|
|
Loading…
Reference in New Issue
Block a user