aboutsummaryrefslogtreecommitdiff
path: root/glifestream/usettings/templates/pshb.html
blob: d37247a5f3d1de15a5dde93c6f997fe13dc47a9a (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
31
32
33
34
35
36
37
38
39
40
41
42
43
{% extends "settings.html" %}
{% load i18n %}

{% block settings %}
  <p class="bold">{% trans "PubSubHubbub subscriptions" %}
    <a href="http://code.google.com/p/pubsubhubbub/" target="_blank" class="smaller" style="font-weight:normal">(?)</a>
  </p>
  {% if page.msg %}<p class="msg">{{ page.msg }}</p>{% endif %}

  {% if subs %}
  <table id="pshb-subs" cellpadding="5">
    <tr class="odd">
      <th>#</th>
      <th>{% trans "Service" %}</th>
      <th>{% trans "Verified" %}</th>
      <th>{% trans "Expire" %}</th>
      <th></th>
    </tr>
    {% for s in subs %}
    <tr class="{% cycle 'odd' 'even' %}">
      <td align="right">{{ forloop.counter }}.</td>
      <td>{{ s.service.name }}</td>
      <td>{% ifequal s.verified 1 %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endifequal %}</td>
      <td>{{ s.expire }}</td>
      <td>
	<a href="#" id="unsubscribe-{{ s.id }}">{% trans "unsubscribe" %}</a>
      </td>
    </tr>
    {% endfor %}
  </table>
  {% endif %}

  {% if services %}
  <form id="pshb-form" method="post" action="{% url 'usettings-pshb' %}">
    <select name="subscribe">
      <option value="">-- {% trans "service" %} --</option>
      {% for s in services %}
      <option value="{{ s.id }}">{{ s.name }}</option>{% endfor %}
    </select>
    <input type="submit" value="{% trans "subscribe" %}" />
  </form>
  {% endif %}
{% endblock settings %}

Return to:

Send suggestions and report system problems to the System administrator.