{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
| Hutch | Occupants | Cleaning | Playtime |
|---|---|---|---|
| {{ row.hutch.name }} |
{% if row.residents %}
{% for r in row.residents %}{{ r.name }}{% endfor %}
{% else %}
empty
{% endif %}
|
{% if row.needs_clean %} {% if row.clean_days is none %} Never cleaned {% else %} {{ row.clean_days }}d ago {% endif %} {% else %} {{ row.hutch.date_cleaned | fmt_date }} {% endif %} | {% if row.needs_play %} {% if row.play_days is none %} Never played {% else %} {{ row.play_days }}d ago {% endif %} {% else %} {{ row.hutch.last_playtime | fmt_date }} {% endif %} |
✓ All hutches are clean and up to date on playtime.
{% endif %}| When | User | Action | Section | Record | Changes |
|---|---|---|---|---|---|
| {{ row.entry.timestamp | fmt_date }} | {{ row.username }} | {{ row.entry.action }} | {{ row.section }} | {{ row.record_label }} | {% if row.changes %}{{ row.changes | join(', ') }}{% else %}—{% endif %} |
No activity yet.
{% endif %} {% endblock %}