Dynastie/templates/add_post.html

15 lines
628 B
HTML
Raw Normal View History

2012-07-08 16:23:39 +02:00
{% extends "templates/base.html" %}
2012-07-22 10:47:24 +02:00
{% block head %}
<script type="text/javascript" src="/static/js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
2012-09-11 22:25:58 +02:00
<script type="text/javascript" src="/static/js/dynastie.js"></script>
2012-07-22 10:47:24 +02:00
{% endblock %}
2012-07-08 16:23:39 +02:00
{% block content %}
2012-09-11 22:25:58 +02:00
<form id="previewForm" action="/post/add/{{ blog_id }}" method="post">{% csrf_token %}
2012-07-08 16:23:39 +02:00
{{ form.as_p }}
2012-07-22 10:47:24 +02:00
<textarea name="content" class="mceAdvanced"></textarea><br/><br/>
2012-09-11 22:25:58 +02:00
<input type="submit" name="add" value="Add" /><input type="button" name="preview" value="Preview" onClick="previewPost();"/><input type="submit" name="cancel" value="Cancel" />
2012-07-08 16:23:39 +02:00
</form>
{% endblock %}