Fixate table left/rightmost column width
This commit is contained in:
@ -14,14 +14,11 @@ db.init_app(app)
|
|||||||
|
|
||||||
|
|
||||||
# TODO
|
# TODO
|
||||||
# - Sortable list to enter full race results (need 7 positions to calculate points),
|
# - Sortable list to enter full race results (need 7 positions to calculate points) => remove from race page
|
||||||
# don't enter race result on guess page
|
|
||||||
# - Move guessed place to leftmost column and display actual finishing position of driver instead
|
# - Move guessed place to leftmost column and display actual finishing position of driver instead
|
||||||
# - Choose "place to guess" late before the race?
|
# - Choose "place to guess" late before the race?
|
||||||
# - Already show coming race in table, to give better feedback once a user has locked in a guess
|
# - Already show coming race in table, to give better feedback once a user has locked in a guess
|
||||||
# - Set fixed sizes for left- and rightmost column in races table
|
# - Fix the weird sizing everywhere when selecting only a single user, center the season card...
|
||||||
# - Fix the weird sizing everywhere when selecting only a single user...
|
|
||||||
# - Replace ALL absolute pixel values inside the templates
|
|
||||||
|
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
|
|||||||
@ -24,9 +24,9 @@
|
|||||||
<table class="table table-bordered table-sm table-responsive">
|
<table class="table table-bordered table-sm table-responsive">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" rowspan="2" class="text-center">Race</th>
|
<th scope="col" rowspan="2" class="text-center" style="width: 200px;">Race</th>
|
||||||
<th scope="col" colspan="{{ chosenusers | length }}" class="text-center">Call</th>
|
<th scope="col" colspan="{{ chosenusers | length }}" class="text-center">Call</th>
|
||||||
<th scope="col" rowspan="2" class="text-center">Result</th>
|
<th scope="col" rowspan="2" class="text-center" style="width: 200px;">Result</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user