{% extends "layout.html" %}{% block content %}

Settings history

Every settings change made through the dashboard, newest first. Hand edits to config.toml on disk are not recorded here.

{% if changes.is_empty() %}

No settings have been changed through the dashboard yet.

{% else %}
{% for change in changes %}{% endfor %}
WhenWhoKeyBeforeAfter
{{ change.changed_at }} {% match change.username %}{% when Some with (name) %}{{ name }}{% when None %}removed user{% endmatch %} {{ change.key }} {% match change.old_value %}{% when Some with (value) %}
{{ value }}
{% when None %}absent{% endmatch %}
{% match change.new_value %}{% when Some with (value) %}
{{ value }}
{% when None %}removed{% endmatch %}
{% if pagination.pages() > 1 %}{% endif %} {% endif %}
{% endblock %}