flask/flask_website/templates/snippets/category.html
Armin Ronacher 9cc86c7b0e Added colon
2010-05-03 12:49:37 +02:00

22 lines
644 B
HTML

{% extends "snippets/layout.html" %}
{% block title %}{{ category.name }}{% endblock %}
{% block body %}
<h2>{{ category.name }}</h2>
{% if category.count > 3 %}
<p>
Here you can find all {{ category.count }} snippets of this
category. You can also
{% else %}
This category is pretty empty so far. Why not
{% endif %}
<a href="{{ url_for('snippets.new',
category=category.slug) }}">add a new one</a>.
{% if snippets %}
<h3>Snippets in this Category:</h3>
<ul>
{% for snippet in snippets %}
<li><a href="{{ snippet.url }}">{{ snippet.title }}</a>
{% endfor %}
</ul>
{% endif %}
{% endblock %}