31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
{% extends "templates/base.html" %}
|
|
|
|
{% block head %}
|
|
<script type="text/javascript" src="/static/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
|
|
<script type="text/javascript">
|
|
var external_list = "/tinyMCEExternalList/post/edit/{{ post_id }}";
|
|
</script>
|
|
<script type="text/javascript" src="/static/js/dynastie.js"></script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form id="previewForm" action="/post/edit/{{ post_id }}" method="post">{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<textarea name="content" class="mceAdvanced">{{ content }}</textarea>
|
|
<input type="submit" name="edit" value="Edit" /><input type="button" name="preview" value="Preview" onClick="previewPost({{ blog_id }});"/><input type="submit" name="cancel" value="Cancel" />
|
|
</form>
|
|
<div class="comments">
|
|
{% for comment in comments %}
|
|
<div class="comment">
|
|
<div class="infos">
|
|
<a href="/comment/edit/{{ comment.id }}">#{{ comment.id }}</a> <span class="author">{{ comment.author }}</span> <span class="mail">{{ comment.email|default:"no mail" }}</span> <span class="date">{{ comment.date|date:"D d M Y H:m" }}<span> <a href="/comment/delete/{{ comment.id }}" onclick="return confirm('Do you really want to delete this item ?')">delete</a>
|
|
</div>
|
|
<div class="content">
|
|
{% autoescape off %}
|
|
{{ comment.the_comment }}
|
|
{% endautoescape %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|