{% load i18n %}
    
    {% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %}
    
    
    
    
    
    
    
    
    
    
    {% block extra_head %}
    {% endblock %}
    
    
        
    
    
        
    
    
    
{% if APP_NAME %}
{{APP_NAME}}
{%endif%}
    
 
    
{% if reminders %}{%endif%}
    
    
      {% for section in MENU.childs %}
      {% if section.available %}- {{section.label}}
      
        {% for menu_item in section.childs %}{%if menu_item.available%}
        {% if menu_item.childs %}- {{menu_item.label}}
            
                {% for menu_subitem in menu_item.childs %}{%if menu_subitem.available%}
                - {{menu_subitem.label}}
 
            {%endif%}{% endfor %}
 
        {%else%}
        - {{menu_item.label}}
 
        {%endif%}{% endif %}{% endfor %}
      
       {%endif%}
      {% endfor %}
    
     
    
        {% block content %}{% endblock %}