From 58250bfe6dfef3719ba4bfb0d2dc3edb9d6065b7 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Mon, 23 Jun 2025 11:37:22 +0200 Subject: [PATCH] Add support link to dashboard --- .../frontend/templates/frontend/base.html | 2 -- .../frontend/organizations/dashboard.html | 18 ++++++++---------- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/src/servala/frontend/templates/frontend/base.html b/src/servala/frontend/templates/frontend/base.html index 77cdc50..89d363f 100644 --- a/src/servala/frontend/templates/frontend/base.html +++ b/src/servala/frontend/templates/frontend/base.html @@ -10,8 +10,6 @@ - {% block extra_css %} - {% endblock extra_css %} {% block html_title %} diff --git a/src/servala/frontend/templates/frontend/organizations/dashboard.html b/src/servala/frontend/templates/frontend/organizations/dashboard.html index d3283ba..b0dd273 100644 --- a/src/servala/frontend/templates/frontend/organizations/dashboard.html +++ b/src/servala/frontend/templates/frontend/organizations/dashboard.html @@ -183,16 +183,14 @@ <small class="text-muted">{% translate "Configure organization details" %}</small> </div> </a> - {% comment %} - {# TODO: use once support form is merged #} - <a href="{{ organization.urls.support }}" class="list-group-item list-group-item-action d-flex align-items-center"> - <i class="bi h2 bi-life-preserver me-3 text-info"></i> - <div> - <h6 class="mb-1">{% translate "Get Support" %}</h6> - <small class="text-muted">{% translate "Access help and documentation" %}</small> - </div> - </a> - {% endcomment %} + <a href="{{ organization.urls.support }}" + class="list-group-item list-group-item-action d-flex align-items-center"> + <i class="bi h2 bi-life-preserver me-3 text-info"></i> + <div> + <h6 class="mb-1">{% translate "Get Support" %}</h6> + <small class="text-muted">{% translate "Access help and documentation" %}</small> + </div> + </a> </div> </div> </div>