diff options
Diffstat (limited to 'templates/admin/hashtag_create.html')
-rw-r--r-- | templates/admin/hashtag_create.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/admin/hashtag_create.html b/templates/admin/hashtag_create.html new file mode 100644 index 0000000..2d31cf7 --- /dev/null +++ b/templates/admin/hashtag_create.html @@ -0,0 +1,26 @@ +{% extends "settings/base.html" %} + +{% block title %}Add hashtag - Admin{% endblock %} + +{% block content %} + <form action="." method="POST"> + <h1>Add A hashtag</h1> + <p> + Use this form to add a hashtag. + </p> + {% csrf_token %} + <fieldset> + <legend>hashtag Details</legend> + {% include "forms/_field.html" with field=form.hashtag %} + {% include "forms/_field.html" with field=form.name_override %} + </fieldset> + <fieldset> + <legend>Access Control</legend> + {% include "forms/_field.html" with field=form.public %} + </fieldset> + <div class="buttons"> + <a href="{% url "admin_hashtags" %}" class="button secondary left">Back</a> + <button>Create</button> + </div> + </form> +{% endblock %} |