52 lines
1.4 KiB
HTML
52 lines
1.4 KiB
HTML
{% extends "wiki/base.html" %}
|
|
{% load wiki_tags i18n sekizai_tags %}
|
|
{% load url from future %}
|
|
|
|
{% block pagetitle %}{% trans "Add new article" %}{% endblock %}
|
|
|
|
{% block wiki_contents %}
|
|
|
|
{% addtoblock "js" %}
|
|
<script type="text/javascript" src="{{ STATIC_URL }}js/vendor/urlify.js "></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
(function($) {
|
|
$(document).ready(function (){
|
|
$("#id_title").keyup(function () {
|
|
var e = $("#id_slug")[0];
|
|
if(!e._changed) {
|
|
e.value = URLify(this.value, 64);
|
|
}
|
|
});
|
|
});
|
|
})(jQuery);
|
|
//]]>
|
|
</script>
|
|
{% endaddtoblock %}
|
|
|
|
<article class="main-article new-article">
|
|
|
|
{% include "wiki/includes/editormedia.html" %}
|
|
<h1 class="page-header">{% trans "Add new article" %}</h1>
|
|
|
|
<form method="POST" class="form-horizontal">
|
|
{% wiki_form create_form %}
|
|
<div class="form-actions">
|
|
<button type="submit" name="save_changes" class="btn btn-primary btn-large">
|
|
<span class="icon fa fa-plus" aria-hidden="true"></span>
|
|
{% trans "Create article" %}
|
|
</button>
|
|
|
|
<a href="{% url 'wiki:get' path=parent_urlpath.path %}" class="btn btn-large back">
|
|
<span class="icon fa fa-circle-arrow-left" aria-hidden="true"></span>
|
|
{% trans "Go back" %}
|
|
</a>
|
|
</div>
|
|
{% include "wiki/includes/cheatsheet.html" %}
|
|
</form>
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|
|
|