fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/themes/bootflat/templates/faq/list.html

21 lines
520 B
HTML

{% extends "faq/layout.html" %}
{% block main_content %}
<div class="container">
<h1>FAQs</h1>
{% for cat in categories %}
<h3>{{ cat.name }}</h3>
<ul class="media-list">
{% for item in cat.questions.all %}
<li class="media well">
<div class="media-body">
<h2 class="media-heading">{{ item.title }}</h2>
<p>{{ item.answer|linebreaks }}</p>
</div>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
{% endblock %}