evorepo/templates/news/add.html
Dan McGee 3682fb285b Move most inline JS into script file
We're getting to the point where we are starting to have a good chunk of JS
scattered about. Centralize a lot of it for maintenance and performance
purposes.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-09-30 13:15:20 -05:00

41 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% block title %}Arch Linux - News: {% if form.instance.id %}Edit{% else %}Add{% endif %} Article{% endblock %}
{% block content %}
<div id="news-add-article" class="box">
{% if form.instance.id %}
<h2>News: Edit Article</h2>
{% else %}
<h2>News: Add Article</h2>
{% endif %}
<p>News articles are formatted using
<a href="http://daringfireball.net/projects/markdown/syntax">Markdown syntax</a>.
Please use this syntax if at all possible over raw HTML, which can be used
if Markdown doesn't support what you would like to do. Before posting, you
are highly encouraged to use the <strong>Preview</strong> button to check
your work. Javascript must be enabled to use it, but it will render the
news item exactly as it will appear on the news view page.</p>
<form id="newsform" method="post">{% csrf_token %}
<fieldset>
{{ form.as_p }}
</fieldset>
<p>
<label></label>
<input title="Save changes" type="submit" value="Save" />
<input id="previewbtn" title="Preview" type="button" value="Preview" />
</p>
</form>
</div>
<div class="news-article box" style="display:none;">
<h2>News Preview: <span id="previewtitle"></span></h2>
<div id="previewdata" class="article-content"></div>
</div>
{% load cdn %}{% jquery %}
<script type="text/javascript" src="/media/archweb.js"></script>
<script type="text/javascript">
$(document).ready(enablePreview);
</script>
{% endblock %}