web/ldt/user/templates/iriuser/user/space.html
changeset 6 7256b057c180
parent 5 ae8593287883
child 7 881514514df1
equal deleted inserted replaced
5:ae8593287883 6:7256b057c180
     1 {% extends "ldt/user/user_base.html" %}
       
     2 {# user's space (edit page or project lignes de temps) #}
       
     3 {% load i18n %}
       
     4 {% block breadcrumb %}
       
     5     <li></li>
       
     6     <li>{% trans "Space" %}</li>    
       
     7 {% endblock %}
       
     8 
       
     9 {% block content_title %}{% trans "Space" %}{% endblock %}
       
    10 {% block iricontent%}
       
    11 <ul>
       
    12 {% if cms %}
       
    13     <li><a href="{% url admin:page %}">{% trans "Page" %}</a></li>
       
    14 {% endif %}
       
    15 {% if ldt %}
       
    16     <li><a href="{% url ldt.ldt.views.list_ldt %}">{% trans "Projets Lignes de temps" %}</a></li>
       
    17 {% endif %}
       
    18 </ul>      
       
    19 {% endblock %}