Minor fixes & improvements
[snf-cloudcms] / cloudcmsfaq / templates / cloudcmsfaq / archive.html
1 {% load applicationcontent_tags pagination_tags i18n %}
2
3 <div class="faq">
4     {% for category in categories %}
5     <div class="faq-category">
6         <h2>{{ category.translation.title|upper }}</h2>
7         <ul>
8             {% for q in category.faqs.active %}
9             <li {% if q == question %}class="current"{% endif %}>
10                 <a href="{{ q.get_absolute_url }}">{{ q.title }}</a>
11             </li>
12             {% endfor %}
13         </ul>
14     </div>
15     {% endfor %}
16 </div>