jon/jon/templates/location/index.html

15 lines
495 B
HTML

{% extends "base.html" %}
{% block content %}
<form method="POST">
<select name="location_id">
<option value="" {{ "selected" if not current_user.data.location else ""}}>-</option>
{% for location in locations %}
<option value="{{ location.location_id }}" {{ "selected" if current_user.data.location.location_id == location.location_id else "" }}>{{ location.location_name }}</option>
{% endfor %}
</select>
<button type="submit">Raum wählen</button>
</form>
{% endblock %}