Statistics
| Branch: | Tag: | Revision:

root / invitations / invitation.html @ 4f8b91cd

History | View | Annotate | Download (1 kB)

1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2
        "http://www.w3.org/TR/html4/loose.dtd">
3
<html>
4
<head>
5
    <title>Αποστολή προσκλήσεων σε χρήστες</title>
6
</head>
7
<body>
8

    
9
{% if error_message %}<div id="error"><strong>{{ error_message }}</strong></div>{% endif %}
10

    
11
<form id="" action="/invitations/" method="post">
12
{% csrf_token %}
13

    
14
    <textarea rows="15" cols="50">
15
        Εισάγετε τη λίστα των email στα οποία θέλετε να αποσταλούν προσκλήσεις, ένα σε κάθε γραμμή.
16
        Τα email θα πρέπει να είναι στη μορφή: Όνομα Επίθετο <uname@domain.tld
17
    </textarea
18
    <input ="submit" value="Αποστολή Προσκλήσεων" />
19
</form>
20

    
21
<div id="invsent">
22
Λίστα προσκλήσεων που έχουν αποσταλεί
23
    <div>
24
        <ul>
25
        {% for ivn in invitations.all %}
26
            <li>{{ inv.name }}</li>
27
        {% endfor %}
28
        </ul>
29
    </div>
30
</div>
31

    
32
</body>
33
</html>