Files
recipes/cookbook/templates/manage/keywords.html
2021-02-17 10:45:31 -06:00

36 lines
966 B
HTML

{% extends "base.html" %}
{% load crispy_forms_tags %}
{% load i18n %}
{% load django_tables2 %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<div class="table-container">
<h3 style="margin-bottom: 2vh">{% trans 'Manage Keywords' %}
{% if create_url %}
<a href="{% url create_url %}"> <i class="fas fa-plus-circle"></i>
</a>
{% endif %}
</h3>
{% if filter %}
<br/>
<br/>
<form action="." method="get">
{% csrf_token %}
{{ filter.form|crispy }}
<button type="submit" class="btn btn-success">{% trans 'Filter' %}</button>
<a href="{% url 'manage_keywords' %}"
class="btn btn-secondary shadow-none">{% trans 'Clear' %}</a>
</form>
{% endif %}
{% render_table table %}
</div>
{% endblock content %}