Development

This commit is contained in:
Matthew Grotke 2026-05-25 17:13:49 -04:00
parent 2eddccac70
commit b83c8c1b4c

View file

@ -629,7 +629,7 @@ def collect_tokens():
'</table>'
)
else:
pending_html = ''
pending_html = '<p class="text-muted">No pending changes.</p>'
tokens['PENDING_CHANGES_HTML'] = pending_html
tokens['NO_PENDING'] = 'true' if not pending_items else ''
@ -669,7 +669,7 @@ def collect_tokens():
'</table>'
)
else:
history_html = ''
history_html = '<p class="text-muted">No change history.</p>'
tokens['CHANGE_HISTORY_HTML'] = history_html
servers = dns.get('upstream_servers', [])