e0b8f544ff
Fix draft inclusion in preview Enhance cache post content (avoid recomputing md5sum if present) Add generation duration time Add post only generation (for Dev) Remove Draft when it becomes Post Update blog Copyright Update TinyMCE plugins for inclusion Sort tags by name
49 lines
2.1 KiB
HTML
Executable File
49 lines
2.1 KiB
HTML
Executable File
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<a href="/blog/{{ blog.id }}?page=0">Home</a> <a href="/category/{{ blog.id }}">Categories</a> <a href="/tag/{{ blog.id }}">Tags</a>
|
|
{% if edited %}
|
|
<p class="edited">Blog successfuly updated</p>
|
|
{% endif %}
|
|
{% if user.is_superuser %}
|
|
<form action="/blog/edit/{{ blog.id }}" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" name="edit" value="Edit" /><input type="submit" name="delete" value="Delete" onclick="return confirm('Do you really want to delete this item ?')"/>
|
|
</form>
|
|
{% endif %}
|
|
<br/><br/>
|
|
<a href="/post/add/{{ blog.id }}">Add a post</a> <a href="/generate/{{ blog.id }}">Generate blog</a> <a href="/search/generate/{{ blog.id }}">Generate search index</a>
|
|
<br/><br/>
|
|
<form action="/blog/search/{{ blog.id }}" method="post">
|
|
{% csrf_token %}
|
|
<input name="text"/><input type="submit" name="search" value="Search" />
|
|
</form>
|
|
{% if drafts|length != 0 %}
|
|
<b>Drafts</b>
|
|
<table>
|
|
{% for draft in drafts %}
|
|
<tr><td><a href="/draft/edit/{{ draft.id }}">{{ draft.id }}</a></td><td>{{ draft.title }}</td><td>{{ draft.category.name }}</td><td>{{ draft.creation_date }}</td><td>{{ draft.modification_date }}</td><td><a href="/draft/delete/{{ draft.id }}" onclick="return confirm('Do you really want to delete this item ?')">Delete</a></td></tr>
|
|
{% endfor %}
|
|
</table><br/>
|
|
{% endif %}
|
|
|
|
{% if posts|length == 0 %}
|
|
<br/><br/>
|
|
<b>Any post available</b><br/><br/>
|
|
{% else %}
|
|
<b>Posts</b>
|
|
<table>
|
|
{% for post in posts %}
|
|
{% with post.id as cur_id %}
|
|
<tr><td><a href="/post/edit/{{ post.id }}">{{ post.id }}</a></td><td>{{ post.title }}</td><td>{{ post.category.name }}</td><td>{{ post.creation_date }}</td><td>{{ post.modification_date }}</td><td>{{ post.published }}</td><td>{{ post.front_page }}</td><td>{{ comments|hash:cur_id|default_if_none:"0" }} comment{{ comments|hash:cur_id|pluralize }}</td><td><a href="/post/delete/{{ post.id }}" onclick="return confirm('Do you really want to delete this item ?')">Delete</a></td></tr>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</table>
|
|
<br/><br/>
|
|
{% autoescape off %}
|
|
<center>{{ navigation_bar }}</center>
|
|
{% endautoescape %}
|
|
{% endblock %}
|