-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathcursor_settings.html
More file actions
27 lines (26 loc) · 1007 Bytes
/
cursor_settings.html
File metadata and controls
27 lines (26 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "base.html" %}
{% block content %}
<div class="container mt-4">
<h1>Cursor Settings</h1>
<form action="{{ url_for('get_cursor_choices') }}" method="post" id="cursor-form">
<label for="primary-cusor">Select primary cursor :</label> <br>
<select name="primary_cursor" id="primary-cursor" class="form-control">
{% for cursor in cursors %}
<option value="{{ cursor }}.cur">{{cursor}}</option>
{% endfor %}
</select>
<br>
<label for="secondary-cusor">Select secondary cursor :</label> <br>
<select name="secondary_cursor" id="secondary-cursor" class="form-control">
{% for cursor in cursors %}
<option value="{{ cursor }}.cur">{{cursor}}</option>
{% endfor %}
</select>
<br>
<button id="activate-cursor" type="submit" form="cursor-form" class="btn btn-primary">
Activate
</button>
<br>
</form>
</div>
{% endblock %}