add link to webhook in base

This commit is contained in:
Cayo Puigdefabregas 2024-06-14 08:45:45 +02:00
parent 8192d08107
commit b7233a7ca8
2 changed files with 7 additions and 2 deletions

View File

@ -155,6 +155,11 @@
</li>
</ul>
</li>
<li class="nav-item">
<a id="wallet" class="nav-link{% if path == 'tokens' %} active2{% endif %}" href="{% url 'webhook:tokens' %}">
{% trans "Webhook Tokens" %}
</a>
</li>
</ul>
</li>
<li class="nav-item">

View File

@ -53,8 +53,8 @@ def webhook_verify(request):
class WebHookTokenView(AdminView, SingleTableView):
template_name = "token.html"
title = _('Token')
section = ""
title = _("Credential management")
section = "Credential"
subtitle = _('Managament Tokens')
icon = 'bi bi-key'
model = Token