]> git.0d.be Git - chloro.git/blob - chloro/phyll/templates/phyll/note_form.html
3cc0ab52824012c0e3765f7133286cac618cb8a8
[chloro.git] / chloro / phyll / templates / phyll / note_form.html
1 {% extends "phyll/base.html" %}
2 {% load gadjo i18n static %}
3
4 {% block bottom-head %}
5 <script src="{% xstatic 'jquery' 'jquery.min.js' %}"></script>
6 <script src="{% static "ckeditor/ckeditor/ckeditor.js" %}"></script>
7 <script type="text/javascript" src="{% static "ckeditor/ckeditor-init.js" %}"></script>
8 {% endblock %}
9
10 {% block body %}
11 <form method="post">
12 {% csrf_token %}
13 {{ form.as_p }}
14 <button>{% trans "Submit" %}</button>
15 </form>
16 {% endblock %}