Rename_Document_to_Concept
This commit is contained in:
parent
7e748bd41f
commit
69cf9d3279
9 changed files with 96 additions and 24 deletions
20
templates/cms/concept_list.html
Normal file
20
templates/cms/concept_list.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{% extends "./base_site.html" %}
|
||||
{% load i18n static %}
|
||||
{% block coltype %}colMS{% endblock %}
|
||||
|
||||
{% block bodyclass %}{{ block.super }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div id="content-main">
|
||||
<h1>Liste des documents</h1>
|
||||
<ol>
|
||||
{% for doc in object_list %}
|
||||
<li><a href="{% url 'document-detail' doc.id %}">{{ doc }}</a></li>
|
||||
{% endfor %}
|
||||
{% for fic in upload %}
|
||||
<li><a href="{% url 'upload-detail' fic.id %}">{{ fic.titre }}</a></li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue