Move_Tiny_mce and ohter
This commit is contained in:
parent
a445b82f44
commit
c298656437
3226 changed files with 135 additions and 65772 deletions
35
templates/cms/uploaddoc_list.html
Normal file
35
templates/cms/uploaddoc_list.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{% extends "./base_site.html" %}
|
||||
{% load i18n static %}
|
||||
|
||||
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />
|
||||
<link rel="stylesheet" type="text/css" href="{% static "css/main.css" %}" />{% endblock %}
|
||||
|
||||
{% block coltype %}colMS{% endblock %}
|
||||
|
||||
{% block bodyclass %}{{ block.super }} dashboard{% endblock %}
|
||||
|
||||
{% block breadcrumbs %}
|
||||
<div class="breadcrumbs">
|
||||
<a href="{% url 'home' %}">Accueil</a>
|
||||
<a href="{% url 'uploaddoc-list' %}">Téléchargements</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div id="content-main">
|
||||
<h1>Documents en téléchargement</h1>
|
||||
{% if object_list %}
|
||||
<ul class="liste-verticale">
|
||||
{% for upload in object_list %}
|
||||
<li><a href="{{ upload.docfile.url }}">{{upload.titre}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
<p>No documents.</p>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue