Skip to content

Commit

Permalink
add breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
kizniche committed Apr 7, 2024
1 parent 197ca3e commit 2f706a5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
1 change: 1 addition & 0 deletions mycodo/mycodo_flask/templates/pages/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@
<div class="row small-gutters" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Custom Options')}}</h5>
<hr class="entry-break">
</div>
{% if 'custom_options_message' in dict_options %}
{% include 'pages/form_options/Custom_Options_Message.html' %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
<div class="row small-gutters align-items-end" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Commands')}}</h5>
<hr class="entry-break">
</div>
{% include 'pages/form_options/Custom_Actions_Message.html' %}
<div class="col-auto small-gutters">
Expand All @@ -130,6 +131,7 @@ <h5>{{_('Commands')}}</h5>
<div class="row small-gutters" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Options')}}</h5>
<hr class="entry-break">
</div>

<div class="col-auto">
Expand Down Expand Up @@ -195,6 +197,7 @@ <h5>{{_('Options')}}</h5>
<div class="row small-gutters" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Custom Options')}}</h5>
<hr class="entry-break">
</div>
{% if 'custom_options_message' in dict_options %}
{% include 'pages/form_options/Custom_Options_Message.html' %}
Expand All @@ -217,6 +220,7 @@ <h5>{{_('Custom Options')}}</h5>
<div class="row small-gutters" style="padding: 1em 0 0 0.5em">
<div class="col-12">
<h5>{{_('Channel Options')}}</h5>
<hr class="entry-break">
</div>
</div>

Expand Down Expand Up @@ -275,6 +279,7 @@ <h5>{{_('Channel Options')}}</h5>
<div class="row small-gutters" style="border-bottom: 1px solid #ddd; padding: 0.5em 0.5em 0 0.5em">
<div class="col-12">
<h5>{{_('Measurement Settings')}}</h5>
<hr class="entry-break">
</div>
</div>
{% if "measurements_variable_amount" in dict_options and dict_options['measurements_variable_amount'] %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ <h5>{{_('Status')}}</h5>
<div class="col-12" style="padding-top: 1em"></div>
<div class="col-12">
<h5>{{_('Commands')}}</h5>
<hr class="entry-break">
</div>
{% include 'pages/form_options/Custom_Actions_Message.html' %}
{% if each_function.device in custom_commands and custom_commands[each_function.device] %}
Expand All @@ -145,6 +146,7 @@ <h5>{{_('Commands')}}</h5>
<div class="row small-gutters" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Options')}}</h5>
<hr class="entry-break">
</div>
<div class="col-auto">
{{form_function.name.label(class_='control-label')}}
Expand Down Expand Up @@ -187,6 +189,7 @@ <h5>{{_('Options')}}</h5>
<div class="row small-gutters" style="padding: 1em 0 0 0.5em">
<div class="col-12">
<h5>{{_('Channel Options')}}</h5>
<hr class="entry-break">
</div>
</div>

Expand Down Expand Up @@ -247,9 +250,10 @@ <h5>{{_('Channel Options')}}</h5>

{% if show_measurement_settings %}

<div class="row small-gutters" style="border-bottom: 1px solid #ddd; padding: 0.5em 0.5em 0 0.5em">
<div class="row small-gutters" style="padding: 0.5em 0.5em 0 0.5em">
<div class="col-12">
<h5>{{_('Measurement Settings')}}</h5>
<hr class="entry-break">
</div>
</div>

Expand Down
4 changes: 4 additions & 0 deletions mycodo/mycodo_flask/templates/pages/output_options.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
<div class="row small-gutters align-items-end" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Commands')}}</h5>
<hr class="entry-break">
</div>
{% include 'pages/form_options/Custom_Actions_Message.html' %}
{% if 'custom_commands' in dict_options %}
Expand All @@ -102,6 +103,7 @@ <h5>{{_('Commands')}}</h5>
<div class="row small-gutters" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Options')}}</h5>
<hr class="entry-break">
</div>

<div class="col-auto">
Expand Down Expand Up @@ -142,6 +144,7 @@ <h5>{{_('Options')}}</h5>
<div class="row small-gutters" style="padding: 0.5em">
<div class="col-12">
<h5>{{_('Custom Options')}}</h5>
<hr class="entry-break">
</div>
{% if 'custom_options_message' in dict_options %}
{% include 'pages/form_options/Custom_Options_Message.html' %}
Expand All @@ -166,6 +169,7 @@ <h5>{{_('Custom Options')}}</h5>
<div class="row small-gutters" style="padding: 1em 0 0 0.5em">
<div class="col-12">
<h5>{{_('Channel Options')}}</h5>
<hr class="entry-break">
</div>
</div>

Expand Down

0 comments on commit 2f706a5

Please sign in to comment.