{% extends '_layout.html' %} {% from 'components.html' import field %} {% block title %}Settings ยท BP Tracker{% endblock %} {% block content %}

MAKE IT YOURS

Settings

Your profile, display and personal thresholds.

{{ form.hidden_tag() }} {% if form.errors %}{% endif %}
Profile{% if profile.profile_pic %}Your profile picture{% endif %}{{ field(form.name, autocomplete='name') }}{{ field(form.email, autocomplete='email') }}{{ field(form.profile_pic) }}
Personal thresholds

Readings at or above either value are labelled in History. These are your saved reference values.

{{ field(form.systolic_threshold, true) }}{{ field(form.diastolic_threshold, true) }}
Display{{ field(form.timezone) }}
{{ form.dark_mode }}{{ form.dark_mode.label }}
Back to overview
{% endblock %}