summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/common
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/templates/horizon/common')
-rw-r--r--horizon/templates/horizon/common/_data_table.html2
-rw-r--r--horizon/templates/horizon/common/_data_table_row_action_row.html2
-rw-r--r--horizon/templates/horizon/common/_datepicker.html2
-rw-r--r--horizon/templates/horizon/common/_detail_header.html4
-rw-r--r--horizon/templates/horizon/common/_domain_page_header.html2
-rw-r--r--horizon/templates/horizon/common/_form_field.html4
-rw-r--r--horizon/templates/horizon/common/_page_header.html4
-rw-r--r--horizon/templates/horizon/common/_sidebar.html2
-rw-r--r--horizon/templates/horizon/common/_tab_group.html2
9 files changed, 12 insertions, 12 deletions
diff --git a/horizon/templates/horizon/common/_data_table.html b/horizon/templates/horizon/common/_data_table.html
index d29ff7c65..38db26fb7 100644
--- a/horizon/templates/horizon/common/_data_table.html
+++ b/horizon/templates/horizon/common/_data_table.html
@@ -8,7 +8,7 @@
{% block table_caption %}
<caption>
{% if not hidden_title %}
- <span class='table-title'>{{ table }}</span>
+ <span class="table-title">{{ table }}</span>
{% endif %}
{{ table.render_table_actions }}
</caption>
diff --git a/horizon/templates/horizon/common/_data_table_row_action_row.html b/horizon/templates/horizon/common/_data_table_row_action_row.html
index 2fdbb6ca1..4cdd83418 100644
--- a/horizon/templates/horizon/common/_data_table_row_action_row.html
+++ b/horizon/templates/horizon/common/_data_table_row_action_row.html
@@ -4,7 +4,7 @@
{{ action.verbose_name }}
</button>
{% else %}
- <a href='{{ action.bound_url }}' title='{{ action.verbose_name }}' {{ action.attr_string|safe }}>
+ <a href="{{ action.bound_url }}" title="{{ action.verbose_name }}" {{ action.attr_string|safe }}>
{% if action.icon != None %}<span class="fa fa-{{ action.icon }}"></span> {% endif %}
{{ action.verbose_name }}
</a>
diff --git a/horizon/templates/horizon/common/_datepicker.html b/horizon/templates/horizon/common/_datepicker.html
index efac7fdd9..507376192 100644
--- a/horizon/templates/horizon/common/_datepicker.html
+++ b/horizon/templates/horizon/common/_datepicker.html
@@ -1,7 +1,7 @@
{% load i18n %}
{% block trimmed %}
- <div class='input-group date'>
+ <div class="input-group date">
{{ datepicker_input }}
<label class="sr-only">{{ datepicker_label }}</label>
<span class="input-group-addon datepicker-addon">
diff --git a/horizon/templates/horizon/common/_detail_header.html b/horizon/templates/horizon/common/_detail_header.html
index be12cb65f..db99156f9 100644
--- a/horizon/templates/horizon/common/_detail_header.html
+++ b/horizon/templates/horizon/common/_detail_header.html
@@ -1,4 +1,4 @@
-<div class='page-header detail-header'>
+<div class="page-header detail-header">
<div class="row">
<div class="detail-title col-xs-12 col-sm-9">
<span class="h1 word-wrap">{{ page_title }}</span>
@@ -6,7 +6,7 @@
<div class="detail-actions col-xs-12 col-sm-3 text-right">
{% if actions %}
- <form class='detail-actions-form actions_column' action='{{ url }}' method="POST">
+ <form class="detail-actions-form actions_column" action="{{ url }}" method="POST">
{% csrf_token %}
{{ actions }}
</form>
diff --git a/horizon/templates/horizon/common/_domain_page_header.html b/horizon/templates/horizon/common/_domain_page_header.html
index b77ce87c8..149fbf28c 100644
--- a/horizon/templates/horizon/common/_domain_page_header.html
+++ b/horizon/templates/horizon/common/_domain_page_header.html
@@ -1,6 +1,6 @@
{% load i18n %}
{% block page_header %}
- <div class='page-header'>
+ <div class="page-header">
<h1>
{% if 'domain_context_name' in request.session %}
<em>{% blocktrans with context_name=request.session.domain_context_name %}{{ context_name }}:{% endblocktrans %}</em>
diff --git a/horizon/templates/horizon/common/_form_field.html b/horizon/templates/horizon/common/_form_field.html
index c521fc0d6..5b3a3b2a8 100644
--- a/horizon/templates/horizon/common/_form_field.html
+++ b/horizon/templates/horizon/common/_form_field.html
@@ -17,10 +17,10 @@
<div class="{{ classes.value }} {{ field|wrapper_classes }}">
{% with add_item_link=field|add_item_url %}
{% if add_item_link %}
- <div class='input-group'>
+ <div class="input-group">
{{ field|add_bootstrap_class }}
<span class="input-group-btn">
- <a href="{{ add_item_link }}" data-add-to-field="{{ field.auto_id }}" class='btn btn-default ajax-add ajax-modal'>
+ <a href="{{ add_item_link }}" data-add-to-field="{{ field.auto_id }}" class="btn btn-default ajax-add ajax-modal">
<span class="fa fa-plus"></span>
</a>
</span>
diff --git a/horizon/templates/horizon/common/_page_header.html b/horizon/templates/horizon/common/_page_header.html
index 9491a55ac..ab8585b8b 100644
--- a/horizon/templates/horizon/common/_page_header.html
+++ b/horizon/templates/horizon/common/_page_header.html
@@ -1,9 +1,9 @@
{% load i18n %}
{% block page_header %}
- <div class='page-header'>
+ <div class="page-header">
<h1>{{ title }}</h1>
{% if actions %}
- <form class='actions_column pull-right' action='{{ url }}' method="POST">
+ <form class="actions_column pull-right" action="{{ url }}" method="POST">
{% csrf_token %}
{{ actions }}
</form>
diff --git a/horizon/templates/horizon/common/_sidebar.html b/horizon/templates/horizon/common/_sidebar.html
index d55251ab5..73aec7bfd 100644
--- a/horizon/templates/horizon/common/_sidebar.html
+++ b/horizon/templates/horizon/common/_sidebar.html
@@ -1,5 +1,5 @@
{% load branding horizon i18n %}
-<nav id='sidebar'>
+<nav id="sidebar">
{% horizon_nav %}
</nav>
diff --git a/horizon/templates/horizon/common/_tab_group.html b/horizon/templates/horizon/common/_tab_group.html
index 8f3aa47fe..05c062f82 100644
--- a/horizon/templates/horizon/common/_tab_group.html
+++ b/horizon/templates/horizon/common/_tab_group.html
@@ -6,7 +6,7 @@
<ul id="{{ tab_group.get_id }}" {{ tab_group.attr_string|safe }}>
{% for tab in tabs %}
<li {{ tab.attr_string|safe }}>
- <a href="?{{ tab_group.param_name }}={{ tab.get_id }}" data-toggle="tab" data-target="#{{ tab.get_id }}" data-loaded='{{ tab.load|yesno:"true,false" }}'>{{ tab.name }}</a>
+ <a href="?{{ tab_group.param_name }}={{ tab.get_id }}" data-toggle="tab" data-target="#{{ tab.get_id }}" data-loaded="{{ tab.load|yesno:"true,false" }}">{{ tab.name }}</a>
</li>
{% endfor %}
</ul>