added new keyword management page

This commit is contained in:
smilerz
2021-02-17 07:09:19 -06:00
parent 505650518e
commit 6962b0e218
6 changed files with 208 additions and 16 deletions

View File

@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% load i18n %}
{% load django_tables2 %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<div class="table-container">
<h3 style="margin-bottom: 2vh">{% trans 'Manage Keywords' %} {% trans 'List' %}
{% if create_url %}
<a href="{% url create_url %}"> <i class="fas fa-plus-circle"></i>
</a>
{% endif %}
</h3>
{% render_table table %}
</div>
{% endblock content %}