aboutsummaryrefslogtreecommitdiff
path: root/templates/blog_admin/partials/users_topbar.html
blob: a0be61221f6d8b2dbeeba3690b1c7536cff36d9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="float-right">
    <a href="{% url 'blog-admin:new-user' %}" >Create New User</a>
    {% comment %} Search Users Box {% endcomment %}
    <form style="display: inline-block; margin-left: 10px;" action="{% url 'blog-admin:users-search' %}" method="get">
        <input style="display: inline-block" type="text" name="q" placeholder="Search Users" autocomplete="off"/>
        <input style="display: inline-block" type="submit" value="Search" />
    </form>
</div>
<h1 style="font-size: 2em;">{{ title }}</h1>
<hr>
<br>
{% for message in messages  %}
    <p class="{{message.tags}}" style="text-align:center;">{{ message }}</p>
{% endfor %}