Files
penracourses/rapids/templates/rapids/rapid_question_view.html
T
Ross 14c3a3c079 .
2021-04-22 23:37:33 +01:00

18 lines
374 B
HTML

{% extends 'rapids/base.html' %}
{% load render_table from django_tables2 %}
{% block css %}
{% endblock %}
{% block content %}
<div id="view-filter-options">
<h3>Filter Rapid Questions</h3>
<form action="" method="get">
{{ filter.form }}
<input class="btn btn-primary btn-sm mt-1 mb-1" type="submit" />
</form>
</div>
{% render_table table %}
{% endblock %}