summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/refresh_subscribed_users.html
blob: 8918c035d9d604d520bd26492c80041e2bc9b59e (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
27
28
29
30
{% load i18n %}

<h3>{% trans "List Of Members. " %}</h3>

  {% if course_name %}

<h3> {% trans "For the course:  " %}{{course_name}}</h3>

  {% endif %}
  <table>
    <thead>
      <tr>
        <th width="500">{% trans "Users" %}</th>
        <th>{% trans "Action" %}</th>
      </tr>
    </thead>
    <tbody>
      {% for user in user_list %}
      <tr>
        <td>{{user.username}}</td>
	{% if can_remove %}
        <td><a class="button alert tiny remove" href="#" id="{{user.id}}">{% trans "Remove" %}</a></td>
	{% endif %}
      </tr>
      {% endfor %}
      <input type="hidden" value="{{node_id}}" id="node_id" />
  </tbody>
  </table>
<a class="close-reveal-modal">&#215;</a>