changeset 320:b9e04a8a45c3

bulma (blog): new publish template: This template let edit title, tags and body, and show a preview if JS is available.
author Goffi <goffi@goffi.org>
date Thu, 29 Apr 2021 16:30:02 +0200
parents 45499870bbf4
children c08fadf23c46
files sat_templates/templates/bulma/blog/publish.html
diffstat 1 files changed, 33 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sat_templates/templates/bulma/blog/publish.html	Thu Apr 29 16:30:02 2021 +0200
@@ -0,0 +1,33 @@
+{% if not embedded %}{% extends 'base/base.html' %}{% endif %}
+{% import 'input/textbox.html' as textbox with context %}
+{% import 'blog/macros.html' as blog with context %}
+{% import 'input/form.html' as form with context %}
+{% import 'input/field.html' as field with context %}
+
+{% block body %}
+    <div class="panel is-primary mt-4">
+        <p class="panel-heading">New blog post</p>
+        <p class="panel-tabs">
+        <a class="tab__btn click_to_edit is-active"
+           href="#">
+            {% trans %}edit{% endtrans %}
+        </a>
+
+        <a class="tab__btn click_to_preview nojs_hide"
+           href="#">
+            {% trans %}preview{% endtrans %}
+        </a>
+        </p>
+        <div id="tab_edit" class="panel-block is-active tab__page state_clicked">
+            {% call form.form(id="blog_post_edit", class="is-flex-grow-1") %}
+                {{ field.text("title", _("title"), help=_("title is optional"))}}
+                {{ field.text("tags", _("tags"), placeholder=_("tags are comma separated"))}}
+                {{ field.textarea("body", "", rows=12, cols=none, help=_("You can use markdown syntax"),
+                                  required=true) }}
+                {{ field.submit(_("Publish"), class="is-fullwidth is-outlined has-text-weight-bold") }}
+            {% endcall %}
+        </div>
+        <div id="tab_preview" class="panel-block tab__page">
+        </div>
+    </div>
+{% endblock body %}