~linuxgoose/bocpress

ref: a72c4771fa8b0612594b4b98382b3e2605399074 bocpress/main/templates/main/snapshot_list.html -rw-r--r-- 708 bytes
a72c4771Jordan Robinson add tags to draft posts list 2 months ago
                                                                                
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
{% extends 'main/layout.html' %}

{% block title %}Post Backups — {{ request.user.username }}{% endblock %}

{% block content %}
<main>
    <h1>Post Backups</h1>
    <p>
        These are the latest snapshots automatically saved, across all posts.
        Post backups are saved automatically, every few seconds, from the post
        create and post edit pages.
    </p>

    {% for snapshot in snapshot_list %}
    <div>
        {{ snapshot.created_at|date:"Y-m-d H:i:s" }}:
        <a href="{% url 'snapshot_detail' snapshot.id %}">
            #{{ snapshot.id }}</a>
        {{ snapshot.title }}
    </div>
    {% empty %}
    <div><em>(none)</em></div>
    {% endfor %}
</main>
{% endblock content %}