{% extends "base.html" %} {% import "components/nav.html" as nav %} {% block title %}Settings{% endblock %} {% block content %} {{ nav.nav("settings") }} Capture Time {% for ct in capture_times %} {% if loop.index0 == capture_time_index %} {{ ct }} {% else %} {{ ct }} {% endif %} {% endfor %} Camera Resolution {% for cr in camera_resolutions %} {% if loop.index0 == camera_resolution_index %} {{ cr }} {% else %} {{ cr }} {% endif %} {% endfor %} Camera position refresh snapshot {% endblock %}