Initial commit
This commit is contained in:
23
templates/view_blog.html
Normal file
23
templates/view_blog.html
Normal 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 %}
|
Reference in New Issue
Block a user