Initial commit

This commit is contained in:
2012-07-08 16:23:39 +02:00
commit 46f9d19def
316 changed files with 47583 additions and 0 deletions

23
templates/view_blog.html Normal file
View File

@@ -0,0 +1,23 @@
{% extends "templates/base.html" %}
{% block content %}
{% 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/>
<a href="/article/add/{{ blog.id }}">Add an article</a>
{% if articles|length == 0 %}
<br/><br/>
<b>Any article available</b><br/><br/>
{% else %}
<table>
{% for article in articles %}
<hr><hl><a href="/article/edit/{{ article.id }}">{{ article.id }}</a></hl><hl>{{ article.title }}</hl><hl>{{ article.category.name }}</hl><hl>{{ article.creation_date }}</hl><hl>{{ article.published }}</hl><hl>{{ article.front_page }}</hl><hl><a href="/article/delete/{{ article.id }}">Delete</a></hl></hr>
{% endfor %}
{% endif %}
</table>
{% endblock %}