* master: added BSD license Update master use django-forms-bootstrap fixed account links on homepage fixed staticfiles settings removed homepage use of ifsetting_tag updated urls updated templates updated imports to reflect new layout updated imports to reflect new layout updated settings updated manage.py updated requirements to 1.4 / DUA and latest versions updated project layout for 1.4 (without content changes) Conflicts: requirements/base.txt symposion/settings.py symposion_project/urls.py
		
			
				
	
	
		
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			378 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			No EOL
		
	
	
		
			378 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load sitetree %}
 | 
						|
<ul class="nav">
 | 
						|
	{% for item in sitetree_items %}
 | 
						|
	<li class="{{ item.is_current|yesno:"active ," }}">
 | 
						|
        <a href="{% sitetree_url for item %}" title="{{ item.hint|default:"" }}">{{ item.title_resolved }}</a>
 | 
						|
		{% if item.has_children %}
 | 
						|
			{% sitetree_children of item for menu template "sitetree/menu.html" %}
 | 
						|
		{% endif %}
 | 
						|
	</li>
 | 
						|
	{% endfor %}
 | 
						|
</ul> |