Files @ cb4b0fac3871
Branch filter:

Location: symposion_app/symposion/templates/sitetree/tree.html

Patrick Altman
Merge branch 'django1.6-compatibility' of https://github.com/mbrochh/symposion into mbrochh-django1.6-compatibility

Conflicts:
symposion/boxes/urls.py
symposion/cms/urls.py
symposion/conference/urls.py
symposion/proposals/models.py
symposion/proposals/urls.py
symposion/reviews/urls.py
symposion/schedule/models.py
symposion/schedule/urls.py
symposion/speakers/urls.py
symposion/sponsorship/urls.py
symposion/teams/urls.py
{% load sitetree %}
{% if sitetree_items %}
<ul>
    {% for item in sitetree_items %}
        {% if item.insitetree  %}
            <li>
                <a href="{% sitetree_url for item %}" {% if item.hint %}title="{{ item.hint }}"{% endif %}>{{ item.title_resolved }}</a>
                {% if item.has_children %}
                    {% sitetree_children of item for sitetree template "sitetree/tree.html" %}
                {% endif %}
            </li>
        {% endif %}
    {% endfor %}
</ul>
{% endif %}