summaryrefslogtreecommitdiff
path: root/src/templates
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/apps/room/list.html2
-rw-r--r--src/templates/form.html5
2 files changed, 3 insertions, 4 deletions
diff --git a/src/templates/apps/room/list.html b/src/templates/apps/room/list.html
index 203d67b..2ec375e 100644
--- a/src/templates/apps/room/list.html
+++ b/src/templates/apps/room/list.html
@@ -24,7 +24,7 @@
<p>Created by {{r.creator}} {{r.timecreated|datehumanize}}.</p>
<p>Meeting room URL: <a href="{{r|roomurl}}">{{r|roomurl}}</a></p>
<ul class="ilist">
- <li><div class="button"><a href="{% prefix %}/room/{{r.id}}/modify">Modify Room</a></li>
+ <!-- li><div class="button"><a href="{% prefix %}/room/{{r.id}}/modify">Modify Room</a></li -->
<li><div class="button"><a href="{% prefix %}/room/{{r.id}}/delete">Delete Room</a></li>
</ul>
</div>
diff --git a/src/templates/form.html b/src/templates/form.html
index 077cd53..2e1e243 100644
--- a/src/templates/form.html
+++ b/src/templates/form.html
@@ -18,10 +18,9 @@
{% if field.is_hidden %}
{{ field }}
{% else %}
- <li class="links {% if field.field.required %}required{% endif %}" {{ field.row_attrs }}>
+ <li class="links {% if field.field.required %}required{% endif %}" {{ field.row_attrs }} style="margin-bottom: 10px;">
{{ field.errors }}
- <label for="id_{{ field.html_name }}" class="fieldlabel">{{ field.label }}
- {% if field.field.required %}<b>*</b>{% endif %}</label>
+ <label for="id_{{ field.html_name }}" class="fieldlabel" style="border-bottom: 1px solid #CECECE;"><em>{{ field.label }}{% if field.field.required %}<b>*</b>{% endif %}</em></label>
<div class="fieldinput">{{ field }}</div>
</li>
{% endif %}