mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-05-12 09:13:11 +00:00
31 lines
No EOL
761 B
HTML
31 lines
No EOL
761 B
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block content %}
|
|
<div class="row-fluid">
|
|
<div class="span10">
|
|
<h3> <a href='{% url 'blog_list' %}'>Back to the Blog</a> </h3>
|
|
|
|
<h3>
|
|
{{ post.title }}
|
|
</h3>
|
|
|
|
{% if post.published %}
|
|
<p>
|
|
{{ post.body }}
|
|
</p>
|
|
|
|
<ul>
|
|
{% for comment in post.comments.all %}
|
|
<li>{{ comment.body }}</li>
|
|
{% empty %}
|
|
<li>No comments yet</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% else %}
|
|
<p> Unpublished - Choose an <a href="{% url 'home' %}">admin</a> tool and publish it.</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |