Initial commit of userguide app
[snf-cloudcms] / cloudcmsguide / templates / cloudcmsguide / archive.html
1 {% load applicationcontent_tags pagination_tags i18n %}
2
3 <div class="guide">
4     {% for service in services %}
5     <div class="guide-category">
6         <h2>{{ service.translation.title|upper }}</h2>
7         <ul>
8             {% for e in service.userguideentries.active %}
9             <li {% if e == entry %}class="current"{% endif %}>
10                 <a href="{{ e.get_absolute_url }}">{{ e.title }}</a>
11             </li>
12             {% endfor %}
13         </ul>
14     </div>
15     {% endfor %}
16 </div>