..
1
2
3
4
5
6
7
8
9
10
11
12
13
14 | <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 %}
|
|