Dynastie/templates/generate.html

35 lines
1.2 KiB
HTML
Raw Normal View History

2012-07-18 11:30:54 +02:00
{% extends "templates/base.html" %}
{% block content %}
2012-10-09 20:47:12 +02:00
<a href="/category/{{ blog.id }}">Categories</a>
2012-07-18 11:46:31 +02:00
{% 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" />
</form>
{% endif %}
<br/><br/>
2012-09-08 12:35:52 +02:00
<a href="/post/add/{{ blog.id }}">Add a post</a> <a href="/generate/{{ blog.id }}">Generate blog</a><br/>
2012-07-18 11:30:54 +02:00
{% if report|length == 0 %}
<b style="color:red">Any engine selected</b><br/><br/>
{% else %}
{% autoescape off %}
{{ report }}
<br/><br/>
2012-07-18 11:30:54 +02:00
{% endautoescape %}
{% endif %}
2012-08-28 09:09:14 +02:00
{% if posts|length == 0 %}
2012-07-18 11:46:31 +02:00
<br/><br/>
2012-08-28 09:09:14 +02:00
<b>Any post available</b><br/><br/>
2012-07-18 11:46:31 +02:00
{% else %}
<table>
2012-08-28 09:09:14 +02:00
{% for post in posts %}
2012-10-09 20:47:12 +02:00
{% with post.id as cur_id %}
2012-10-04 21:49:33 +02:00
<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 }}">Delete</a></td></tr>
2012-10-09 20:47:12 +02:00
{% endwith %}
2012-07-18 11:46:31 +02:00
{% endfor %}
{% endif %}
</table>
2012-07-18 11:30:54 +02:00
{% endblock %}