Statistics
| Branch: | Tag: | Revision:

root / cloudcmsfaq / templates / cloudcmsfaq / archive.html @ 0ab488b2

History | View | Annotate | Download (481 Bytes)

1
{% load applicationcontent_tags pagination_tags i18n %}
2

    
3
<div class="faq">
4
    {% for category in categories %}
5
    <div class="faq-category">
6
        <h3>{{ category.translation.title }}</h3>
7
        <ul>
8
            {% for q in category.faqs.active %}
9
            <li {% if  == 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>