{% 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 %}
{% if status_filter == 'pending' or status_filter == 'all' %} {% endif %} {% for r in requests %} {% if status_filter == 'pending' or status_filter == 'all' %} {% endif %} {% if r.admin_notes %} {% endif %} {% endfor %}
# MAC Address Proposed Device Name Proposed Hostname Proposed IP Submitted Client Config Time StatusActions
{{ 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 r.status == 'pending' %}
{% else %} {% endif %}
Admin note: {{ r.admin_notes }}
{% else %}

No {{ status_filter }} requests found.

{% endif %} {% endblock %}