diff --git a/roundtable/templates/alerts/list.html b/roundtable/templates/alerts/list.html index 99385df..df2e643 100644 --- a/roundtable/templates/alerts/list.html +++ b/roundtable/templates/alerts/list.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Alerts — Fabled Scryer{% endblock %} +{% block title %}Alerts — Roundtable{% endblock %} {% block content %}

Alerts

diff --git a/roundtable/templates/alerts/maintenance.html b/roundtable/templates/alerts/maintenance.html index 3fc5484..5fd62bc 100644 --- a/roundtable/templates/alerts/maintenance.html +++ b/roundtable/templates/alerts/maintenance.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Maintenance Windows — Fabled Scryer{% endblock %} +{% block title %}Maintenance Windows — Roundtable{% endblock %} {% block content %}

Maintenance Windows

diff --git a/roundtable/templates/alerts/maintenance_form.html b/roundtable/templates/alerts/maintenance_form.html index 961a127..a7224f4 100644 --- a/roundtable/templates/alerts/maintenance_form.html +++ b/roundtable/templates/alerts/maintenance_form.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}New Maintenance Window — Fabled Scryer{% endblock %} +{% block title %}New Maintenance Window — Roundtable{% endblock %} {% block content %}

New Maintenance Window

diff --git a/roundtable/templates/alerts/rules_form.html b/roundtable/templates/alerts/rules_form.html index 0352998..2eb1130 100644 --- a/roundtable/templates/alerts/rules_form.html +++ b/roundtable/templates/alerts/rules_form.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}{% if rule %}Edit Rule{% else %}New Alert Rule{% endif %} — Fabled Scryer{% endblock %} +{% block title %}{% if rule %}Edit Rule{% else %}New Alert Rule{% endif %} — Roundtable{% endblock %} {% block content %}

{% if rule %}Edit Rule{% else %}New Alert Rule{% endif %}

diff --git a/roundtable/templates/ansible/browse.html b/roundtable/templates/ansible/browse.html index 8f969ab..bf9ed05 100644 --- a/roundtable/templates/ansible/browse.html +++ b/roundtable/templates/ansible/browse.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Browse Playbooks — Fabled Scryer{% endblock %} +{% block title %}Browse Playbooks — Roundtable{% endblock %} {% block content %}

Browse Playbooks

diff --git a/roundtable/templates/ansible/index.html b/roundtable/templates/ansible/index.html index e6b6afb..a924da6 100644 --- a/roundtable/templates/ansible/index.html +++ b/roundtable/templates/ansible/index.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Ansible Runs — Fabled Scryer{% endblock %} +{% block title %}Ansible Runs — Roundtable{% endblock %} {% block content %}

Ansible Runs

diff --git a/roundtable/templates/ansible/run_detail.html b/roundtable/templates/ansible/run_detail.html index c3001f9..57e1175 100644 --- a/roundtable/templates/ansible/run_detail.html +++ b/roundtable/templates/ansible/run_detail.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Run {{ run.id[:8] }} — Fabled Scryer{% endblock %} +{% block title %}Run {{ run.id[:8] }} — Roundtable{% endblock %} {% block content %}
← Runs diff --git a/roundtable/templates/audit/list.html b/roundtable/templates/audit/list.html index 693b467..0051f76 100644 --- a/roundtable/templates/audit/list.html +++ b/roundtable/templates/audit/list.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Audit Log — Fabled Scryer{% endblock %} +{% block title %}Audit Log — Roundtable{% endblock %} {% block content %}

Audit Log

diff --git a/roundtable/templates/auth/login.html b/roundtable/templates/auth/login.html index 4961146..e481b76 100644 --- a/roundtable/templates/auth/login.html +++ b/roundtable/templates/auth/login.html @@ -1,9 +1,8 @@ {% extends "base.html" %} -{% block title %}Login — Fabled Scryer{% endblock %} +{% block title %}Login — Roundtable{% endblock %} {% block content %}
-

Roundtable

Under Watch, Under Care.

{% if error %}
diff --git a/roundtable/templates/base.html b/roundtable/templates/base.html index ad0f2ac..ec8d295 100644 --- a/roundtable/templates/base.html +++ b/roundtable/templates/base.html @@ -3,7 +3,7 @@ - {% block title %}Fabled Scryer{% endblock %} + {% block title %}Roundtable{% endblock %} @@ -195,7 +195,7 @@ textarea { resize: vertical; } - Fabled Scryer + Roundtable Dashboard Hosts diff --git a/roundtable/templates/dashboard/edit.html b/roundtable/templates/dashboard/edit.html index 1ef9d61..27a44bc 100644 --- a/roundtable/templates/dashboard/edit.html +++ b/roundtable/templates/dashboard/edit.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Edit: {{ dashboard.name }} — Fabled Scryer{% endblock %} +{% block title %}Edit: {{ dashboard.name }} — Roundtable{% endblock %} {% block content %}

Edit: {{ dashboard.name }}

diff --git a/roundtable/templates/dashboard/index.html b/roundtable/templates/dashboard/index.html index 598f9d4..1abd060 100644 --- a/roundtable/templates/dashboard/index.html +++ b/roundtable/templates/dashboard/index.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}{{ dashboard.name }} — Fabled Scryer{% endblock %} +{% block title %}{{ dashboard.name }} — Roundtable{% endblock %} {% block content %} {# ── Header ────────────────────────────────────────────────────────────────── #} diff --git a/roundtable/templates/dashboard/list.html b/roundtable/templates/dashboard/list.html index 63390e8..8fe4ea2 100644 --- a/roundtable/templates/dashboard/list.html +++ b/roundtable/templates/dashboard/list.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Dashboards — Fabled Scryer{% endblock %} +{% block title %}Dashboards — Roundtable{% endblock %} {% block content %}

Dashboards

diff --git a/roundtable/templates/dashboard/share.html b/roundtable/templates/dashboard/share.html index c49c995..234936a 100644 --- a/roundtable/templates/dashboard/share.html +++ b/roundtable/templates/dashboard/share.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Share: {{ dashboard.name }} — Fabled Scryer{% endblock %} +{% block title %}Share: {{ dashboard.name }} — Roundtable{% endblock %} {% block content %}

Share: {{ dashboard.name }}

diff --git a/roundtable/templates/dashboard/share_created.html b/roundtable/templates/dashboard/share_created.html index 098b3c1..aaf59b2 100644 --- a/roundtable/templates/dashboard/share_created.html +++ b/roundtable/templates/dashboard/share_created.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Share Link Created — Fabled Scryer{% endblock %} +{% block title %}Share Link Created — Roundtable{% endblock %} {% block content %}

Share Link Created

diff --git a/roundtable/templates/dashboard/share_view.html b/roundtable/templates/dashboard/share_view.html index 198cf6a..b8ee771 100644 --- a/roundtable/templates/dashboard/share_view.html +++ b/roundtable/templates/dashboard/share_view.html @@ -3,7 +3,7 @@ - {{ dashboard.name }} — Fabled Scryer + {{ dashboard.name }} — Roundtable @@ -67,7 +67,7 @@ {{ dashboard.name }} - Fabled Scryer · read-only view + Roundtable · read-only view
diff --git a/roundtable/templates/dns/index.html b/roundtable/templates/dns/index.html index bf9bf21..423204d 100644 --- a/roundtable/templates/dns/index.html +++ b/roundtable/templates/dns/index.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}DNS Monitor — Fabled Scryer{% endblock %} +{% block title %}DNS Monitor — Roundtable{% endblock %} {% block content %}

DNS Monitor

diff --git a/roundtable/templates/errors/404.html b/roundtable/templates/errors/404.html index 1c7d700..cc15b0f 100644 --- a/roundtable/templates/errors/404.html +++ b/roundtable/templates/errors/404.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Not Found — Fabled Scryer{% endblock %} +{% block title %}Not Found — Roundtable{% endblock %} {% block content %}

404

diff --git a/roundtable/templates/errors/500.html b/roundtable/templates/errors/500.html index 3e16334..81f4868 100644 --- a/roundtable/templates/errors/500.html +++ b/roundtable/templates/errors/500.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Error — Fabled Scryer{% endblock %} +{% block title %}Error — Roundtable{% endblock %} {% block content %}

500

diff --git a/roundtable/templates/hosts/form.html b/roundtable/templates/hosts/form.html index 5296d8c..c667bf4 100644 --- a/roundtable/templates/hosts/form.html +++ b/roundtable/templates/hosts/form.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}{% if host %}Edit Host{% else %}New Host{% endif %} — Fabled Scryer{% endblock %} +{% block title %}{% if host %}Edit Host{% else %}New Host{% endif %} — Roundtable{% endblock %} {% block content %}

{% if host %}Edit Host{% else %}Add Host{% endif %}

diff --git a/roundtable/templates/hosts/list.html b/roundtable/templates/hosts/list.html index 18fe108..b619ebd 100644 --- a/roundtable/templates/hosts/list.html +++ b/roundtable/templates/hosts/list.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Hosts — Fabled Scryer{% endblock %} +{% block title %}Hosts — Roundtable{% endblock %} {% block content %}

Hosts

diff --git a/roundtable/templates/hosts/uptime.html b/roundtable/templates/hosts/uptime.html index 36e4635..b3ff1b7 100644 --- a/roundtable/templates/hosts/uptime.html +++ b/roundtable/templates/hosts/uptime.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Uptime / SLA — Fabled Scryer{% endblock %} +{% block title %}Uptime / SLA — Roundtable{% endblock %} {% block content %}

Uptime / SLA

diff --git a/roundtable/templates/ping/index.html b/roundtable/templates/ping/index.html index f28c7ea..728f115 100644 --- a/roundtable/templates/ping/index.html +++ b/roundtable/templates/ping/index.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% block title %}Ping Monitor — Fabled Scryer{% endblock %} +{% block title %}Ping Monitor — Roundtable{% endblock %} {% block content %}
diff --git a/roundtable/templates/settings/ansible.html b/roundtable/templates/settings/ansible.html index d549416..f7b0532 100644 --- a/roundtable/templates/settings/ansible.html +++ b/roundtable/templates/settings/ansible.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/ansible.html #} {% extends "base.html" %} -{% block title %}Settings — Ansible — Fabled Scryer{% endblock %} +{% block title %}Settings — Ansible — Roundtable{% endblock %} {% block content %} {% set active_tab = "ansible" %} {% include "settings/_tabs.html" %} diff --git a/roundtable/templates/settings/auth.html b/roundtable/templates/settings/auth.html index 1e4a533..aecece1 100644 --- a/roundtable/templates/settings/auth.html +++ b/roundtable/templates/settings/auth.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/auth.html #} {% extends "base.html" %} -{% block title %}Settings — Auth — Fabled Scryer{% endblock %} +{% block title %}Settings — Auth — Roundtable{% endblock %} {% block content %} {% set active_tab = "auth" %} {% include "settings/_tabs.html" %} diff --git a/roundtable/templates/settings/general.html b/roundtable/templates/settings/general.html index 611f22a..fec48dc 100644 --- a/roundtable/templates/settings/general.html +++ b/roundtable/templates/settings/general.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/general.html #} {% extends "base.html" %} -{% block title %}Settings — General — Fabled Scryer{% endblock %} +{% block title %}Settings — General — Roundtable{% endblock %} {% block content %} {% set active_tab = "general" %} {% include "settings/_tabs.html" %} diff --git a/roundtable/templates/settings/index.html b/roundtable/templates/settings/index.html index 858dc86..7454c62 100644 --- a/roundtable/templates/settings/index.html +++ b/roundtable/templates/settings/index.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/index.html #} {% extends "base.html" %} -{% block title %}Settings — Fabled Scryer{% endblock %} +{% block title %}Settings — Roundtable{% endblock %} {% block content %}

Settings

diff --git a/roundtable/templates/settings/notifications.html b/roundtable/templates/settings/notifications.html index 3447b7a..f9e18da 100644 --- a/roundtable/templates/settings/notifications.html +++ b/roundtable/templates/settings/notifications.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/notifications.html #} {% extends "base.html" %} -{% block title %}Settings — Notifications — Fabled Scryer{% endblock %} +{% block title %}Settings — Notifications — Roundtable{% endblock %} {% block content %} {% set active_tab = "notifications" %} {% include "settings/_tabs.html" %} diff --git a/roundtable/templates/settings/plugin_detail.html b/roundtable/templates/settings/plugin_detail.html index 90cb70d..94c4ad5 100644 --- a/roundtable/templates/settings/plugin_detail.html +++ b/roundtable/templates/settings/plugin_detail.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/plugin_detail.html #} {% extends "base.html" %} -{% block title %}{{ plugin.get('name', plugin._dir) }} Settings — Fabled Scryer{% endblock %} +{% block title %}{{ plugin.get('name', plugin._dir) }} Settings — Roundtable{% endblock %} {% block content %} {% set active_tab = "plugins" %} {% include "settings/_tabs.html" %} diff --git a/roundtable/templates/settings/plugins.html b/roundtable/templates/settings/plugins.html index de7d14c..4959ec0 100644 --- a/roundtable/templates/settings/plugins.html +++ b/roundtable/templates/settings/plugins.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/plugins.html #} {% extends "base.html" %} -{% block title %}Settings — Plugins — Fabled Scryer{% endblock %} +{% block title %}Settings — Plugins — Roundtable{% endblock %} {% block content %} {% set active_tab = "plugins" %} {% include "settings/_tabs.html" %} diff --git a/roundtable/templates/settings/reports.html b/roundtable/templates/settings/reports.html index a52ae5e..02e03ec 100644 --- a/roundtable/templates/settings/reports.html +++ b/roundtable/templates/settings/reports.html @@ -1,6 +1,6 @@ {# roundtable/templates/settings/reports.html #} {% extends "base.html" %} -{% block title %}Settings — Reports — Fabled Scryer{% endblock %} +{% block title %}Settings — Reports — Roundtable{% endblock %} {% block content %} {% set active_tab = "reports" %} {% include "settings/_tabs.html" %}