{% extends "base.html" %} {% block title %}Update Requests – WMT – {{ app_name }}{% endblock %} {% block extra_css %} {% endblock %} {% block page_title %} WMT Update Requests {% if pending_count > 0 %} {{ pending_count }} pending {% endif %} {% endblock %} {% block content %}
{% if requests %}| # | MAC Address | Proposed Device Name | Proposed Hostname | Proposed IP | Submitted | Client Config Time | Status | {% if status_filter == 'pending' or status_filter == 'all' %}Actions | {% endif %}
|---|---|---|---|---|---|---|---|---|
| {{ r.id }} | {{ r.mac_address }} |
{{ r.proposed_device_name or '—' }} | {{ r.proposed_hostname or '—' }} | {{ r.proposed_device_ip or '—' }} | {{ r.submitted_at.strftime('%Y-%m-%d %H:%M') }} | {{ r.client_config_mtime or '—' }} |
{{ r.status }}
{% if r.admin_reviewed_at %}
{{ r.admin_reviewed_at.strftime('%Y-%m-%d %H:%M') }} {% endif %} |
{% if status_filter == 'pending' or status_filter == 'all' %}
{% if r.status == 'pending' %} {% else %} — {% endif %} | {% endif %}
| Admin note: {{ r.admin_notes }} | ||||||||
No {{ status_filter }} requests found.