diff --git a/boards/views.py b/boards/views.py --- a/boards/views.py +++ b/boards/views.py @@ -189,4 +189,4 @@ def _get_client_ip(request): ip = x_forwarded_for.split(',')[-1].strip() else: ip = request.META.get('REMOTE_ADDR') - return ip \ No newline at end of file + return ip diff --git a/dependency_list.txt b/dependency_list.txt --- a/dependency_list.txt +++ b/dependency_list.txt @@ -1,4 +1,5 @@ pil +django >= 1.5 django_cleanup django-markupfield markdown diff --git a/templates/posting_general.html b/templates/posting_general.html --- a/templates/posting_general.html +++ b/templates/posting_general.html @@ -4,11 +4,21 @@ {% load markup %} {% block head %} - Neboard + {% if tag %} + Neboard - {{ tag }} + {% else %} + Neboard + {% endif %} {% endblock %} {% block content %} +{% if tag %} +
+

{{ tag }}

+
+{% endif %} + {% if threads %} {% for thread in threads %}
@@ -141,4 +151,4 @@ {% endfor %} -{% endblock %} \ No newline at end of file +{% endblock %}