##// END OF EJS Templates
Added form validation, added style for the tag panel. This fixes #13
Added form validation, added style for the tag panel. This fixes #13

File last commit:

r75:bb74538a merge default
r76:604015c5 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 %}