summaryrefslogtreecommitdiffstats
path: root/templates/admin/hashtag_create.html
blob: 2d31cf73bb5556e07fa5c23ce1efaf4f1dfa79ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 %}