aboutsummaryrefslogtreecommitdiffstats
path: root/server/templates/server/approve_user.html
blob: 126c0b962bf3a3bb329b908d2ff8f899ca4e33d9 (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 'registration/base.html' %}

{% block title %}Admin - Approva Utente{% endblock %}

{% block nav %}
    <a style="margin-left: 10px;" href="{% url 'index' %}" class="breadcrumb">Home</a>
    <a href="{% url 'server'%}" class="breadcrumb hide-on-med-and-down">Admin</a>
    <a href="#!" class="breadcrumb hide-on-med-and-down">Approva Utente</a>
{% endblock %}

{% block content %}
<p>Inserire un codice per riga</p>
<ul class="collection">
{% for i in messages %}
    <li class="collection-item">{{ i }}</li>
{% endfor %}
</ul>
<form action="{% url 'uapprove'%}" method="post">
    {% csrf_token %}
    <textarea name="codes" class="materialize-textarea"></textarea>
    <br><br>
    <button type="submit" class="btn waves-effect waves-light">Invia
    <i class="material-icons right">send</i>
    </button>
</form>
{% endblock %}