summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--templates/group_change.html4
-rw-r--r--templates/group_delete.html4
-rw-r--r--templates/pad_change.html6
-rw-r--r--templates/pad_delete.html4
4 files changed, 17 insertions, 1 deletions
diff --git a/templates/group_change.html b/templates/group_change.html
index 0c62f70..150f044 100644
--- a/templates/group_change.html
+++ b/templates/group_change.html
@@ -2,6 +2,10 @@
{% from "_formhelpers.html" import render_field %}
{% block content %}
+<h1>
+ <b>{{ group.name }}</b>
+</h1>
+
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Edit this group</h3>
diff --git a/templates/group_delete.html b/templates/group_delete.html
index 238a993..6d0f07a 100644
--- a/templates/group_delete.html
+++ b/templates/group_delete.html
@@ -2,6 +2,10 @@
{% from "_formhelpers.html" import render_field %}
{% block content %}
+<h1>
+ <b>{{ group.name }}</b>
+</h1>
+
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title">Delete this group</h3>
diff --git a/templates/pad_change.html b/templates/pad_change.html
index e4635e5..afa0633 100644
--- a/templates/pad_change.html
+++ b/templates/pad_change.html
@@ -2,11 +2,15 @@
{% from "_formhelpers.html" import render_field %}
{% block content %}
+<h1>
+ <b>{{ group.name }}</b>
+</h1>
+
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">
{% if pad %}
- Edit pad: {{pad.name}}
+ Edit pad
{% else %}
Create a pad
{% endif %}
diff --git a/templates/pad_delete.html b/templates/pad_delete.html
index c1925d7..36a8408 100644
--- a/templates/pad_delete.html
+++ b/templates/pad_delete.html
@@ -2,6 +2,10 @@
{% from "_formhelpers.html" import render_field %}
{% block content %}
+<h1>
+ <b>{{ group.name }}</b>
+</h1>
+
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title">Delete this pad</h3>