|
|
@ -7,6 +7,29 @@ |
|
|
<i class="fa fa-edit"></i> |
|
|
<i class="fa fa-edit"></i> |
|
|
Éditer |
|
|
Éditer |
|
|
</a> |
|
|
</a> |
|
|
|
|
|
<h2>Membres</h2> |
|
|
|
|
|
<table class="table table-striped"> |
|
|
|
|
|
<thead> |
|
|
|
|
|
<th>Nom</th> |
|
|
|
|
|
<th>Prénom</th> |
|
|
|
|
|
<th>Pseudo</th> |
|
|
|
|
|
<th>Administrer</th> |
|
|
|
|
|
</thead> |
|
|
|
|
|
<tbody> |
|
|
|
|
|
{% for member in members %} |
|
|
|
|
|
<td>{{member.last_name}}</td> |
|
|
|
|
|
<td>{{member.first_name}}</td> |
|
|
|
|
|
<td>{{member.username}}</td> |
|
|
|
|
|
<td> |
|
|
|
|
|
<a class="btn btn-outline-warning btn-sm" href=""> |
|
|
|
|
|
<i class="fa fa-trash"></i> |
|
|
|
|
|
Supprimer |
|
|
|
|
|
</a> |
|
|
|
|
|
</td> |
|
|
|
|
|
{% endfor %} |
|
|
|
|
|
</tbody> |
|
|
|
|
|
</table> |
|
|
|
|
|
<h2>Contenus</h2> |
|
|
<a class="btn btn-success btn-sm" href="{% url 'content:content-new' %}"> |
|
|
<a class="btn btn-success btn-sm" href="{% url 'content:content-new' %}"> |
|
|
<i class="fa fa-plus"></i> |
|
|
<i class="fa fa-plus"></i> |
|
|
Ajouter un contenu |
|
|
Ajouter un contenu |
|
|
@ -18,4 +41,6 @@ |
|
|
{% include "content/content.html" %} |
|
|
{% include "content/content.html" %} |
|
|
{%endfor%} |
|
|
{%endfor%} |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<br /> |
|
|
|
|
|
<br /> |
|
|
{% endblock %} |
|
|
{% endblock %} |
|
|
|