2022-11-12 23:27:59 +00:00
|
|
|
<br>
|
|
|
|
|
|
|
|
{% for a in activities %}
|
|
|
|
<div class="row">
|
2022-11-13 07:19:09 +00:00
|
|
|
<div class="col-sm-5">{{ util.pretty_link(a.source())|safe }}</div>
|
|
|
|
<div class="col-sm-4">{{ util.pretty_link(a.target())|safe }}</div>
|
|
|
|
<div class="col-sm-3">
|
|
|
|
{% if a.status == 'error' %}
|
|
|
|
<span title="Error" class="glyphicon glyphicon-exclamation-sign"></span>
|
|
|
|
{% else %}{% if a.status == 'new' %}
|
|
|
|
<span title="Processing" class="glyphicon glyphicon-transfer"></span>
|
|
|
|
{% endif %}{% endif %}
|
2022-11-13 16:25:12 +00:00
|
|
|
{{ logs.maybe_link(a.updated, a.key.id())|safe }}
|
2022-11-12 23:27:59 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="row">None</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% include "paging.html" %}
|