Ajout d'un template d'affichage des réglages.
This commit is contained in:
parent
cbc33c005e
commit
861a747b0b
1 changed files with 11 additions and 0 deletions
11
settings/templates/settings/settings.html
Normal file
11
settings/templates/settings/settings.html
Normal 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>
|
Loading…
Reference in a new issue