From e2f77a766459254d52cfdf90efea1b8e7034a7b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 12 Feb 2020 15:01:24 +0100 Subject: [PATCH] templates: add appbar with visualization actions (#14268) --- bijoe/templates/bijoe/visualization.html | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/bijoe/templates/bijoe/visualization.html b/bijoe/templates/bijoe/visualization.html index 259cc95..62d7fbf 100644 --- a/bijoe/templates/bijoe/visualization.html +++ b/bijoe/templates/bijoe/visualization.html @@ -12,12 +12,18 @@ {{ object.name }} {% endblock %} +{% block appbar %} +

{{ object.name }}

+ + {% trans "Rename" %} + {% trans "Delete" %} + {% trans "Save as" %} + {% trans "Export as JSON" %} + +{% endblock %} + {% block actions %} - {% trans "Rename" %} - {% trans "Delete" %} - {% trans "Save as" %} {% trans "Export as ODS" %} - {% trans "Export as JSON" %} {% trans "URL for IFRAME" %} {% endblock %}