Statistics
| Branch: | Tag: | Revision:

root / snf-app / synnefo / admin / templates / invitations_list.html @ 483c9197

History | View | Annotate | Download (1.1 kB)

1
{% extends "base.html" %}
2

    
3
{% block body %}
4
<table class="zebra-striped id-sorted">
5
  <thead>
6
    <tr>
7
      <th>ID</th>
8
      <th>Source</th>
9
      <th>Target</th>
10
      <th>Accepted</th>
11
      <th>Level</th>
12
      <th>Created</th>
13
      <th>Updated</th>
14
      <th></th>
15
    </tr>
16
  </thead>
17
  <tbody>
18
    {% for invitation in invitations %}
19
    <tr>
20
      <td>{{ invitation.id }}</td>
21
      <td>
22
        <a href="{% url synnefo.admin.views.users_info invitation.source.id %}">{{ invitation.source.name }}</a>
23
        <br />
24
        {{ invitation.source.uniq }}
25
      </td>
26
      <td>
27
        <a href="{% url synnefo.admin.views.users_info invitation.target.id %}">{{ invitation.target.name }}</a>
28
        <br />
29
        {{ invitation.target.uniq }}
30
      </td>
31
      <td>{{ invitation.accepted }}</td>
32
      <td>{{ invitation.level }}</td>
33
      <td>{{ invitation.created }}</td>
34
      <td>{{ invitation.updated }}</td>
35
      <td><a class="btn info" href="{% url synnefo.admin.views.invitations_resend invitation.id %}">Resend</a></td>
36
    </tr>
37
    {% endfor %}
38
  </tbody>
39
</table>
40
{% endblock body %}