Ajout d'un template d'affichage des réglages.

This commit is contained in:
Hugo LEVY-FALK 2018-01-30 20:03:43 +01:00
parent cbc33c005e
commit 861a747b0b

View file

@ -0,0 +1,11 @@
{% extends "base.html" %}
<h1>Page d'administration du site</h1>
<h2>Liste des catégories</h2>
<a href="{% url 'content:category-new' %}">Créer une nouvelle catégorie</a>
<ul>
{% for c in categories %}
<li>c.name</li>
{% endfor %}
</ul>
<h2>Réglages</h2>