aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates')
-rw-r--r--servo/templates/checkin/index.html4
-rwxr-xr-xservo/templates/modal.html2
-rw-r--r--servo/templates/rules/list_rules.html1
3 files changed, 4 insertions, 3 deletions
diff --git a/servo/templates/checkin/index.html b/servo/templates/checkin/index.html
index d7928fb..c197d31 100644
--- a/servo/templates/checkin/index.html
+++ b/servo/templates/checkin/index.html
@@ -34,7 +34,7 @@
</ul>
{% endif %}
<ul class="nav navbar-nav pull-right">
- {% if request.user.is_authenticated %}
+ {% if request.user.is_authenticated %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{% bootstrap_icon "user" %} {{ request.session.checkin_user_name }} <b class="caret"></b></a>
<ul class="dropdown-menu">
@@ -48,7 +48,7 @@
<li><a href="{% url 'accounts-logout' %}" data-modal="#modal">{% bootstrap_icon "off" %} {% trans "Log out" %}...</a></li>
</ul>
</li>
- {% endif %}
+ {% endif %}
</ul>
</div><!--/.nav-collapse -->
</div>
diff --git a/servo/templates/modal.html b/servo/templates/modal.html
index d6f75db..dbd3d37 100755
--- a/servo/templates/modal.html
+++ b/servo/templates/modal.html
@@ -3,7 +3,7 @@
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">&times;</button>
- <h3>{% block header %} {{ title }} {% endblock header %}</h3>
+ <h4>{% block header %} {{ title }} {% endblock header %}</h4>
</div>
<div class="modal-body">
{% block body %}
diff --git a/servo/templates/rules/list_rules.html b/servo/templates/rules/list_rules.html
index 9aef78e..ccfdd26 100644
--- a/servo/templates/rules/list_rules.html
+++ b/servo/templates/rules/list_rules.html
@@ -11,6 +11,7 @@
<ul class="nav nav-pills nav-stacked">
<li class="nav-header">{% trans "Rules" %}</li>
{% for o in object_list %}
+ <li>{{ o }}</li>
<li class="{% active_url request o.get_admin_url %}"><a href="{{ o.get_admin_url }}">{{ o.get_name }}</a></li>
{% endfor %}
</ul>