2011-03-01 09:59:06 -05:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% load utils_tags %}
|
|
|
|
|
2012-12-21 16:52:30 -08:00
|
|
|
{% block bodyclass %}NB-body-status{% endblock %}
|
|
|
|
|
2011-03-01 09:59:06 -05:00
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<table class="NB-status">
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Last Update<br>Next Update</th>
|
|
|
|
<th>Decay</th>
|
|
|
|
<th>Subs</th>
|
|
|
|
<th>Active</th>
|
|
|
|
<th>Premium</th>
|
|
|
|
<th>Per Month</th>
|
|
|
|
</tr>
|
|
|
|
{% for feed in feeds %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ feed.pk }}</td>
|
2011-03-01 10:22:54 -05:00
|
|
|
<td><img class="NB-favicon" src="data:image/png;base64,{{ feed.icon.data }}" /> {{ feed.feed_title|truncatewords:4 }}</td>
|
2011-03-01 09:59:06 -05:00
|
|
|
<td class="NB-status-update">
|
2011-03-01 10:26:28 -05:00
|
|
|
{{ feed.last_update|date:"M j H:i:s" }}
|
2011-03-01 09:59:06 -05:00
|
|
|
<br>
|
2011-03-01 10:26:28 -05:00
|
|
|
{{ feed.next_scheduled_update|date:"M j H:i:s" }}
|
2011-03-01 09:59:06 -05:00
|
|
|
</td>
|
|
|
|
<td>{{ feed.min_to_decay }}</td>
|
|
|
|
<td>{{ feed.num_subscribers }}</td>
|
|
|
|
<td>{{ feed.active_subscribers }}</td>
|
|
|
|
<td>{{ feed.premium_subscribers }}</td>
|
|
|
|
<td>{{ feed.average_stories_per_month }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock content %}
|