evorepo/templates/news/add.html
Dan McGee 943ef2e8e4 Convert to and enable staticfiles contrib application
This moves our site static files into the sitestatic directory if they
are shared resources, and also moves a handful of things (such as the
artwork logos) into application-specific static/ directories. This
allows the staticfiles contrib app to work after a few settings tweaks,
a run of collectstatic, and massaging the hardcoded '/media/' prefix out
of our templates.

Django 1.4 is going to make this a lot easier to move things to a CDN
and provides better template tags; for now this is setting the stage
before we can move to that.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-12-05 23:06:10 -06: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="news-preview-button" title="Preview" type="button" value="Preview" />
</p>
</form>
</div>
<div id="news-preview" class="news-article box" style="display:none;">
<h2>News Preview: <span id="news-preview-title"></span></h2>
<div id="news-preview-data" class="article-content"></div>
</div>
{% load cdn %}{% jquery %}
<script type="text/javascript" src="{{ STATIC_URL }}archweb.js"></script>
<script type="text/javascript">
$(document).ready(enablePreview);
</script>
{% endblock %}