54 lines
1.4 KiB
HTML
54 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ user.name }} - MyWhoosh Garmin Sync{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ user.name }}</h1>
|
|
<p><a href="/users/{{ user.id }}/edit">Edit</a> | <a href="/">Back to dashboard</a></p>
|
|
|
|
<dl>
|
|
<dt>Enabled</dt>
|
|
<dd>{{ "Yes" if user.enabled else "No" }}</dd>
|
|
|
|
<dt>Health state</dt>
|
|
<dd>{{ user.health_state.value }}</dd>
|
|
|
|
<dt>MyWhoosh state</dt>
|
|
<dd>{{ user.mywhoosh_state }}</dd>
|
|
|
|
<dt>Garmin state</dt>
|
|
<dd>{{ user.garmin_state }}</dd>
|
|
|
|
<dt>Action reason</dt>
|
|
<dd>{{ user.action_reason or "-" }}</dd>
|
|
|
|
<dt>Created at</dt>
|
|
<dd>{{ user.created_at }}</dd>
|
|
|
|
<dt>Updated at</dt>
|
|
<dd>{{ user.updated_at }}</dd>
|
|
</dl>
|
|
|
|
{% if user.action_reason == "garmin_mfa_required" %}
|
|
<h2>Garmin MFA required</h2>
|
|
{% include "fragments/mfa_form.html" %}
|
|
{% endif %}
|
|
|
|
<h2>Activities</h2>
|
|
<ul>
|
|
{% for activity in activities %}
|
|
<li>
|
|
{{ activity.activity_name }} — {{ activity.status.value }}
|
|
{% if activity.status.value == "failed" and activity.retryable %}
|
|
<form method="post" action="/activities/{{ activity.id }}/retry" style="display:inline">
|
|
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
|
|
<button type="submit">Retry</button>
|
|
</form>
|
|
{% endif %}
|
|
</li>
|
|
{% else %}
|
|
<li>No pending activities.</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|