15 lines
547 B
HTML
Executable File
15 lines
547 B
HTML
Executable File
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
{% if categories|length == 0 %}
|
|
<b>Any category available</b><br/><br/>
|
|
{% else %}
|
|
<table>
|
|
{% for category in categories %}
|
|
<tr><td>{{ category.id }}</td><td>{{ category.name }}</td><td><a href="/category/edit/{{ category.id }}">Edit</a></td><td><a href="/category/delete/{{ category.id }}" onclick="return confirm('Do you really want to delete this item ?')">Delete</a></td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
<li><a href="/category/add/{{ blog.id }}">Add a category</a></li>
|
|
{% endblock %}
|