sector performance added
This commit is contained in:
parent
b1aaf4167e
commit
acf5616e3c
@ -1245,6 +1245,7 @@
|
||||
<li>Economic Calendar</li>
|
||||
<li>Jokes</li>
|
||||
<li>Gainers, Losers, Active</li>
|
||||
<li>Sector Performance</li>
|
||||
|
||||
{%endif%}
|
||||
|
||||
@ -1358,6 +1359,7 @@
|
||||
<option value="18">Economic Calendar</option>
|
||||
<option value="19">Jokes</option>
|
||||
<option value="20">Gainers, Losers, Active</option>
|
||||
<option value="21">Sector Performance</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
@ -7288,6 +7290,170 @@
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Sector Performance -->
|
||||
|
||||
<div class="page" id="Page21" style="display: none">
|
||||
<div class="row">
|
||||
|
||||
<div class="col-lg-6 col-md-6 col-sm-12">
|
||||
|
||||
<div class="row g-3 align-items-center mt-3">
|
||||
<div class="col-auto">
|
||||
<label for="inputScrollSpeedZ222" class="col-form-label">Scroll Speed:</label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<select
|
||||
id="inputScrollSpeedSector"
|
||||
class="form-select speed-select">
|
||||
<option {%if sector_settings.speed == 'medium' %} selected {% endif %}>Medium</option>
|
||||
<option {%if sector_settings.speed == 'slow' %} selected {% endif %}>Slow</option>
|
||||
<option {%if sector_settings.speed == 'fast' %} selected {% endif %}>Fast</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row g-3 align-items-center mt-3 left-div">
|
||||
<div class="col-auto">
|
||||
<label for="inputScrollSpeedRowZ222" class="col-form-label">Scroll Speed (Row 2):</label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<select
|
||||
id="inputScrollSpeedRow21"
|
||||
class="form-select speed-select">
|
||||
<option {%if sector_settings.speed2 == 'medium' %} selected {% endif %}>Medium</option>
|
||||
<option {%if sector_settings.speed2 == 'slow' %} selected {% endif %}>Slow</option>
|
||||
<option {%if sector_settings.speed2 == 'fast' %} selected {% endif %}>Fast</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row g-3 align-items-center mt-3">
|
||||
<div class="col-auto">
|
||||
<label for="inputTransitionZ222" class="col-form-label">Intro Transition:
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<select id="inputTransitionSector" class="form-select animation-select">
|
||||
<option {%if sector_settings.animation == 'down' %} selected {% endif %}>Down</option>
|
||||
<option {%if sector_settings.animation == 'up' %} selected {% endif %}>Up</option>
|
||||
<option {%if sector_settings.animation == 'continuous' %} selected {% endif %}>Continuous</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row g-3 align-items-center mt-3">
|
||||
<div class="col-auto">
|
||||
<label for="sector-categories" class="col-form-label">Sectors: </label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<select id="sector-categories" class="form-select sector-categories-select">
|
||||
<option>Energy</option><option>Health Care</option><option>Utilities</option><option>Financials</option><option>Real Estate</option><option>Industrials</option><option>Consumer Staples</option><option>Materials</option><option>Consumer Discretionary</option><option>Communication Services</option><option>Technology</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button id="sector-categories-btn" class="btn set-btn">Add</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row g-3 align-items-center left-div" style="padding-top:25px;">
|
||||
<div class="col-auto">
|
||||
<label for="inputTransitionZ" class="col-form-label"
|
||||
>Display Sector Logos
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="col-auto">
|
||||
<input
|
||||
class="form-check-input logo-select"
|
||||
type="checkbox"
|
||||
value=""
|
||||
id="flexCheckCheckedSector3"
|
||||
{%
|
||||
if
|
||||
sector_settings.logos%}
|
||||
checked
|
||||
{%endif%}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row g-3 align-items-center left-div">
|
||||
<div class="col-auto">
|
||||
<label for="inputTransitionZ222" class="col-form-label">
|
||||
Display Feature Title
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<input
|
||||
class="form-check-input title-select"
|
||||
type="checkbox"
|
||||
value=""
|
||||
id="sector_settings_title"
|
||||
{% if sector_settings.title%}
|
||||
checked
|
||||
{%endif%}/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="col-lg-4 col-md-4 col-sm-12">
|
||||
<h6 class="mt-3">List:</h6>
|
||||
<div class="features-div-two">
|
||||
<ul
|
||||
id="sector-list"
|
||||
class="display-features-list text-white symbol-list">
|
||||
{% for f in sector_settings.categories %}
|
||||
<li>{{f}}</li>
|
||||
{% endfor%}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-lg-2 col-md-2 col-sm-12">
|
||||
<div class="icons-list">
|
||||
<i
|
||||
id="sector-increase-btn"
|
||||
class="upbutton fa fa-chevron-up"
|
||||
aria-hidden="true"
|
||||
></i>
|
||||
<br />
|
||||
<br />
|
||||
<i
|
||||
id="sector-decrease-btn"
|
||||
class="downbutton fa fa-chevron-down"
|
||||
aria-hidden="true"
|
||||
></i>
|
||||
<a style="position: relative; bottom: 30px; left: 10px">Sort Order</a>
|
||||
<br />
|
||||
<br />
|
||||
<i
|
||||
id="sector-remove-btn"
|
||||
class="fa fa-minus"
|
||||
aria-hidden="true"
|
||||
></i>
|
||||
<span style="position: relative; bottom: 0; left: 10px">Remove</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="save-btn-div">
|
||||
<a href="#" class="btn save-btn">Save</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<!-- Custom Images -->
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user