feat: add operational sync controls
This commit is contained in:
17
app/web/templates/fragments/sync_result.html
Normal file
17
app/web/templates/fragments/sync_result.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<ul>
|
||||
{% for outcome in outcomes %}
|
||||
<li>
|
||||
User {{ outcome.user_id if outcome.user_id is not none else "unknown" }}:
|
||||
status={{ outcome.status }}
|
||||
discovered={{ outcome.discovered }}
|
||||
imported={{ outcome.imported }}
|
||||
skipped={{ outcome.skipped }}
|
||||
failed={{ outcome.failed }}
|
||||
{% if outcome.message %}
|
||||
— {{ outcome.message }}
|
||||
{% endif %}
|
||||
</li>
|
||||
{% else %}
|
||||
<li>No outcomes.</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
Reference in New Issue
Block a user