|
11 | 11 | </head> |
12 | 12 | <body> |
13 | 13 | <div class="wrapper" id="page"> |
14 | | - <nav class="bg-dark text-center" id="sidebar"> |
| 14 | + <nav class="bg-dark text-light" id="sidebar"> |
15 | 15 | <div class="brand text-light"> |
16 | 16 | <h4><a href="index.html" class="index-link"><b>compare50</b></a></h4> |
17 | 17 | </div> |
18 | | - <div class="text-light id" id="{{id}}">{{id}} / {{max_id}}</div> |
19 | | - <div class="btn-group" role="group" aria-label="NextPrev" id="next_prev_match"> |
20 | | - <button type="button" class="btn btn-outline-light prev_match" id="prev_match" {{'disabled' if id <= 1 else ''}}><<</button> |
21 | | - <button type="button" class="btn btn-outline-light next_match" id="next_match" {{'disabled' if id >= max_id else ''}}>>></button> |
22 | | - </div> |
23 | | - <div class="btn-group" role="group" aria-label="Views" id="passes"> |
24 | | - {% for pass_ in passes %} |
25 | | - <button type="button" class="btn btn-outline-light view_selector" id="{{pass_.__name__}}selector" title="{{pass_.__doc__}}">{{pass_.__name__}}</button> |
26 | | - {% endfor %} |
27 | | - </div> |
28 | | - <div id="btn-group"> |
| 18 | + <div class="sidebar-right"> |
| 19 | + <div class="text-light id" id="{{id}}">{{id}} / {{max_id}}</div> |
| 20 | + <div class="btn-group" role="group" aria-label="NextPrev" id="next_prev_match"> |
| 21 | + <button type="button" class="btn btn-outline-light prev_match" id="prev_match" {{'disabled' if id <= 1 else ''}}><<</button> |
| 22 | + <button type="button" class="btn btn-outline-light next_match" id="next_match" {{'disabled' if id >= max_id else ''}}>>></button> |
| 23 | + </div> |
| 24 | + <div class="btn-group" role="group" aria-label="Views" id="passes"> |
| 25 | + {% for pass_ in passes %} |
| 26 | + <button type="button" class="btn btn-outline-light view_selector" id="{{pass_.__name__}}selector" title="{{pass_.__doc__}}">{{pass_.__name__}}</button> |
| 27 | + {% endfor %} |
| 28 | + </div> |
29 | 29 | <div class="btn-group" role="group" aria-label="NextPrevGroup"> |
30 | 30 | <button type="button" class="btn btn-outline-light matches_group" id="previous_group"><</button> |
31 | 31 | <button type="button" class="btn btn-outline-light matches_group" id="next_group">></button> |
32 | 32 | </div> |
| 33 | + <div class="text-light" id="group_counter"></div> |
33 | 34 | </div> |
34 | | - <div class="text-light" id="group_counter"></div> |
35 | 35 | </nav> |
36 | 36 | <div id="content"> |
37 | 37 | {% for match in matches %} |
|
0 commit comments