Updated mobile version
This commit is contained in:
parent
5b17225b3f
commit
48614a3268
@ -1,6 +1,24 @@
|
|||||||
{% include "header.html" %}
|
{% include "header.html" %}
|
||||||
<body>
|
<body>
|
||||||
<h1 class="container" style="text-align: center">{{ data["title"] }}</h1>
|
<h1 class="container" style="text-align: center">{{ data["title"] }}</h1>
|
||||||
|
<div class="dropdown">
|
||||||
|
<form action="/post" method="post" id="test">
|
||||||
|
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
{% set id = session["list_ids"] %}
|
||||||
|
{% set actid = session["active_id"] %}
|
||||||
|
{% if actid == "0" %}
|
||||||
|
ALL
|
||||||
|
{% else %}
|
||||||
|
{{ id[actid] }}
|
||||||
|
{% endif %}
|
||||||
|
</button>
|
||||||
|
<div class="dropdown-menu" aria-labelledby="dropdownMenu2">
|
||||||
|
<button class="dropdown-item" type="submit" value="0" id="" name="list">All</button>
|
||||||
|
{% for listid in data["list_ids"] %}
|
||||||
|
<button class="dropdown-item" type="submit" value="{{listid}}" id="{{id}}" name="list">{{id[listid]}}</button>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
<div class="" >
|
<div class="" >
|
||||||
{% include "addForm.html" %}
|
{% include "addForm.html" %}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user