{% extends 'pybb/base.html' %} {% load pybb_tags i18n %} {% block title %}{% blocktrans with forum=forum.name context 'page title' %}{{ forum }} - Subscription{% endblocktrans %}{% endblock title %} {% block breadcrumb %} {% with forum as object %} {% include "pybb/breadcrumb.html" %} {% endwith %} {% endblock %} {% block content %}

{% blocktrans with forum=forum.name context 'content heading' %}{{ forum }} - Subscription{% endblocktrans %}

{% csrf_token %} {% include "pybb/form_errors.html" %} {% with form.type as field %}
{% include 'pybb/_select_radio.html' with field=field %}
{% endwith %} {% with form.topics as field %}
{% include 'pybb/_select_radio.html' with field=field %}
{% endwith %} {% for hidden_field in form.hidden_fields %} {{ hidden_field }} {% endfor %} {% trans 'Cancel' %}
{% endblock content %}