{% extends 'base.html' %} {% block content %}

FAQs

{% for category in categories %}

{{ category.title }}

    {% for question in category.questions.all %}
  1. {{ forloop.counter }}. {{ question.question|safe }}

    {{ question.answer|safe }}
  2. {% endfor %}
{% endfor %}

FAQs

{% for category in categories %}
{{ category.title }}
    {% for question in category.questions.all %}
  1. {{ question.question|safe }}
  2. {% endfor %}
{% endfor %}
{% endblock %}