diff --git a/boards/static/css/base_page.css b/boards/static/css/base_page.css --- a/boards/static/css/base_page.css +++ b/boards/static/css/base_page.css @@ -28,11 +28,11 @@ html { } .link { - color: #33bb33; + color: #829dba; } .link:hover { - color: #00ff00; + color: #ba9f82; } .post_id { @@ -45,9 +45,13 @@ html { } .tag { - color: #bb7766; + color: #b4cfec; } .tag:hover { - color: #dd8888; + color: #d0edb4; +} + +.post_id { + color: #fff380; } \ No newline at end of file diff --git a/templates/posting_general.html b/templates/posting_general.html --- a/templates/posting_general.html +++ b/templates/posting_general.html @@ -15,6 +15,8 @@ {% endif %}
{{ thread.title }} + (#{{ thread.id }}) + [{{ thread.pub_time }}] [{% trans "View" %}]
{{ thread.text }}
diff --git a/templates/thread.html b/templates/thread.html --- a/templates/thread.html +++ b/templates/thread.html @@ -15,16 +15,17 @@ {% endif %}
{{ post.title }} - (#{{ post.id }})
+ (#{{ post.id }}) + [{{ post.pub_time }}]
{{ post.text }}
- {% if post.tags %} + {% ifnotequal post.tags.all|length 0 %} {% trans 'Tags' %}: {% for tag in post.tags.all %} {{ tag.name }} {% endfor %} - {% endif %} + {% endifnotequal %}

{% endfor %}