35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
|
{% extends "sidebar.html" %}
|
||
|
{% block body%}
|
||
|
<div>
|
||
|
<div style="width: 30%; float: left" align="center" >Calendar</div>
|
||
|
<div style="width: 30%; float: left" align="center">Show on device</div>
|
||
|
<div style="width: 30%; float: left" align="center">Color</div>
|
||
|
</div>
|
||
|
|
||
|
<div style="margin-top: 50px">
|
||
|
{% for item in calendars %}
|
||
|
<div style="width: 30%; float: left" align="center" >{{ item.name }}</div>
|
||
|
|
||
|
<div style="width: 30%; float: left" align="center">
|
||
|
<!-- Rounded switch -->
|
||
|
<label class="switch">
|
||
|
<input type="checkbox">
|
||
|
<span class="slider round"></span>
|
||
|
</label>
|
||
|
</div>
|
||
|
|
||
|
<div style="width: 30%; float: left" align="center">
|
||
|
<div>
|
||
|
<input type="color" id="head" name="head"
|
||
|
value="#e66465">
|
||
|
<label for="head">Test</label>
|
||
|
</div>
|
||
|
<!--svg height="20" width="20">
|
||
|
<circle cx="10" cy="10" r="10" stroke="black" stroke-width="0" fill={{ item.color }} />
|
||
|
</svg-->
|
||
|
</div>
|
||
|
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
{% endblock %}
|