web/ldt/user/templates/iriuser/user/space.html
changeset 4 7c994c98d1df
parent 3 651f67b66c51
child 5 ae8593287883
equal deleted inserted replaced
3:651f67b66c51 4:7c994c98d1df
     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 %}