|
|
@ -15,13 +15,13 @@
|
|
|
|
<!-- user/pass r = requests.get('https://api.github.com/user', auth=('user', 'pass')) -->
|
|
|
|
<!-- user/pass r = requests.get('https://api.github.com/user', auth=('user', 'pass')) -->
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
{% for tag in tags %}
|
|
|
|
{% for tag in tags %}
|
|
|
|
{% if tag == "" %}
|
|
|
|
{% if tag == "" %}
|
|
|
|
<a href="/" class="pure-button button-tag ">All</a>
|
|
|
|
<a href="/" class="pure-button button-tag ">All</a>
|
|
|
|
{% else %}
|
|
|
|
{% else %}
|
|
|
|
<a href="/?tag={{ tag}}" class="pure-button button-tag ">{{ tag }}</a>
|
|
|
|
<a href="/?tag={{ tag}}" class="pure-button button-tag ">{{ tag }}</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="watch-table-wrapper">
|
|
|
|
<div id="watch-table-wrapper">
|
|
|
@ -48,9 +48,7 @@
|
|
|
|
<div class="fetch-error">{{ watch.last_error }}</div>
|
|
|
|
<div class="fetch-error">{{ watch.last_error }}</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>{{watch|format_last_checked_time}}
|
|
|
|
<td>{{watch|format_last_checked_time}}</td>
|
|
|
|
|
|
|
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<td>{{watch.last_changed|format_timestamp_timeago}}</td>
|
|
|
|
<td>{{watch.last_changed|format_timestamp_timeago}}</td>
|
|
|
|
<td><a href="/api/checknow?uuid={{ watch.uuid}}" class="pure-button button-small pure-button-primary">Recheck</a>
|
|
|
|
<td><a href="/api/checknow?uuid={{ watch.uuid}}" class="pure-button button-small pure-button-primary">Recheck</a>
|
|
|
|
<a href="/edit?uuid={{ watch.uuid}}" class="pure-button button-small pure-button-primary">Edit</a>
|
|
|
|
<a href="/edit?uuid={{ watch.uuid}}" class="pure-button button-small pure-button-primary">Edit</a>
|
|
|
|