##// END OF EJS Templates
Improved page showing threads for certain tag. Also some fixes of dependency...
Improved page showing threads for certain tag. Also some fixes of dependency list. This fixed #1

File last commit:

r57:dcbc67f3 default
r74:4a75764d default
Show More
tags.html
23 lines | 429 B | text/html | HtmlLexer
{% extends "base.html" %}
{% load i18n %}
{% load markup %}
{% block head %}
<title>Neboard - {% trans "tags" %}</title>
{% endblock %}
{% block content %}
<div class="post">
{% if tags %}
{% for tag in all_tags %}
<a class="tag" href="{% url 'tag' tag.name %}">
{{ tag.name }}</a><br />
{% endfor %}
{% else %}
No tags found.
<hr />
{% endif %}
</div>
{% endblock %}