ipo calendar
This commit is contained in:
parent
12a285d595
commit
00098b6f9d
@ -593,6 +593,8 @@
|
|||||||
<li>Sports (Team Stats)</li>
|
<li>Sports (Team Stats)</li>
|
||||||
|
|
||||||
<li>Movies</li>
|
<li>Movies</li>
|
||||||
|
|
||||||
|
<li>IPO Calendar</li>
|
||||||
|
|
||||||
{%endif%}
|
{%endif%}
|
||||||
|
|
||||||
@ -723,6 +725,8 @@
|
|||||||
<option value="13">Custom Messages</option>
|
<option value="13">Custom Messages</option>
|
||||||
|
|
||||||
<option value="16">Movies</option>
|
<option value="16">Movies</option>
|
||||||
|
|
||||||
|
<option value="17">IPO Calendar</option>
|
||||||
|
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
@ -5991,8 +5995,149 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- IPO Calendar -->
|
||||||
|
|
||||||
|
<div class="page" id="Page17" 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="inputScrollSpeed222"
|
||||||
|
class="form-select speed-select">
|
||||||
|
|
||||||
|
<option {%if ipo_settings.speed == 'medium' %} selected {% endif %}>Medium</option>
|
||||||
|
<option {%if ipo_settings.speed == 'slow' %} selected {% endif %}>Slow</option>
|
||||||
|
<option {%if ipo_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="inputScrollSpeedRow17"
|
||||||
|
class="form-select speed-select">
|
||||||
|
<option {%if ipo_settings.speed2 == 'medium' %} selected {% endif %}>Medium</option>
|
||||||
|
<option {%if ipo_settings.speed2 == 'slow' %} selected {% endif %}>Slow</option>
|
||||||
|
<option {%if ipo_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="inputTransition222" class="form-select animation-select">
|
||||||
|
<option {%if ipo_settings.animation == 'down' %} selected {% endif %}>Down</option>
|
||||||
|
<option {%if ipo_settings.animation == 'up' %} selected {% endif %}>Up</option>
|
||||||
|
<option {%if ipo_settings.animation == 'continuous' %} selected {% endif %}>Continuous</option>
|
||||||
|
</select>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row g-3 align-items-center left-div" style="padding-top: 25px;">
|
||||||
|
<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="flexCheckChecked41"
|
||||||
|
|
||||||
|
{% if ipo_settings.title%}
|
||||||
|
checked
|
||||||
|
{%endif%}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="row g-3 align-items-center mt-3">
|
||||||
|
<div class="col-auto">
|
||||||
|
<label for="inputText" class="col-form-label">API Key: </label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-auto">
|
||||||
|
<input
|
||||||
|
type="text"
|
||||||
|
id="api-key-ipo"
|
||||||
|
placeholder="IPO Calendar API Key"
|
||||||
|
class="form-control api-key"
|
||||||
|
aria-describedby="TextHelpInline"
|
||||||
|
value="{{ ipo_api_key }}"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-auto">
|
||||||
|
<button id="ipo-api-btn" class="btn set-btn" onClick="showIpoP()">Add</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p id="ipo-api-p" style="display: none">New IPO Calendar API key detected, please restart the ticker in order for the feature to work properly.</p>
|
||||||
|
|
||||||
|
</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="ipo-features" class="display-features-list text-white symbol-list">
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col-lg-2 col-md-2 col-sm-12">
|
||||||
|
<div class="icons-list">
|
||||||
|
<i id="ipo-increase-btn"
|
||||||
|
class="upbutton fa fa-chevron-up"
|
||||||
|
aria-hidden="true"></i>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<i id="ipo-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="ipo-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 -->
|
<!-- Custom Images -->
|
||||||
|
|
||||||
<div class="page" id="Page11" style="display: none">
|
<div class="page" id="Page11" style="display: none">
|
||||||
|
Loading…
Reference in New Issue
Block a user