top 20 or 10 golfers filter web panel
This commit is contained in:
parent
39ad5ee59a
commit
19b0202c9e
@ -1,69 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
|
||||
<meta http-equiv="Expires" content="0" />
|
||||
|
||||
<title>Fintic - Web Control Panel</title>
|
||||
|
||||
<link rel="icon" type="image/png" href="/static/images/favicon.png">
|
||||
|
||||
<!-- Bootstrap 5 CDN Links -->
|
||||
|
||||
<script
|
||||
|
||||
src="{{ url_for('static', filename='bootstrap/js/bootstrap.bundle.min.js') }}"
|
||||
|
||||
></script>
|
||||
|
||||
<link
|
||||
|
||||
href="{{ url_for('static', filename='bootstrap/css/bootstrap.min.css') }}"
|
||||
|
||||
rel="stylesheet"
|
||||
|
||||
/>
|
||||
|
||||
|
||||
|
||||
<!-- Fontawesome - for icons -->
|
||||
|
||||
<link
|
||||
|
||||
rel="stylesheet"
|
||||
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||
|
||||
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||
|
||||
crossorigin="anonymous"
|
||||
|
||||
/>
|
||||
|
||||
<link
|
||||
|
||||
rel="stylesheet"
|
||||
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/fontawesome.min.css"
|
||||
|
||||
integrity="sha512-kJ30H6g4NGhWopgdseRb8wTsyllFUYIx3hiUwmGAkgA9B/JbzUBDQVr2VVlWGde6sdBVOG7oU8AL35ORDuMm8g=="
|
||||
|
||||
crossorigin="anonymous"
|
||||
|
||||
/>
|
||||
|
||||
|
||||
|
||||
<!-- CSS Stylesheet linking -->
|
||||
|
||||
<!-- <link href="{{ url_for('static', filename='style.css') }}" type="text/css" rel="stylesheet" /> ALWAYS CHANGE VERSIONING WHENEVER CHANGES ARE MADE TO AVOID BAD CACHING -->
|
||||
@ -6228,21 +6200,14 @@
|
||||
|
||||
|
||||
<div class="row g-3 align-items-center mt-3">
|
||||
|
||||
<div class="col-auto">
|
||||
|
||||
<label for="inputTransition103Z" class="col-form-label"
|
||||
|
||||
>Sport League:
|
||||
|
||||
</label>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-auto">
|
||||
|
||||
<select id="inputTransition103" class="form-select">
|
||||
|
||||
<option>NFL</option>
|
||||
<option>NBA</option>
|
||||
<option>NHL</option>
|
||||
@ -6251,25 +6216,38 @@
|
||||
<option>MLS</option>
|
||||
<option>PGA</option>
|
||||
<option>LPGA</option>
|
||||
|
||||
</select>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-auto">
|
||||
|
||||
<button id="inputTransitionBtn103" class="btn set-btn">
|
||||
|
||||
Add
|
||||
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row g-3 align-items-center mt-3">
|
||||
<div class="col-auto">
|
||||
<label for="inputTransition103Z" class="col-form-label"
|
||||
>Golf Rankings:
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<select id="golf-ranking-number" class="form-select">
|
||||
<option {%if team_stats.top20 == '10' %} selected {% endif %}>Top 10</option>
|
||||
<option {%if team_stats.top20 == '20' %} selected {% endif %}>Top 20</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-auto">
|
||||
<button id="golf-ranking-set" class="btn set-btn">
|
||||
Set
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="row g-3 align-items-center mt-3">
|
||||
|
||||
<div class="col-auto">
|
||||
@ -6294,14 +6272,8 @@
|
||||
|
||||
id="flexCheckChecked24"
|
||||
|
||||
{%
|
||||
|
||||
if
|
||||
|
||||
team_stats.title%}
|
||||
|
||||
{% if team_stats.title%}
|
||||
checked
|
||||
|
||||
{%endif%}
|
||||
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user