diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-14 14:29:32 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-14 14:29:32 +0100 |
commit | 0a23538f51f9ab43fad75d0f54fa7102ecab3c8c (patch) | |
tree | cfc367dbb9f4c3c76679fa89f7cc516b6ceb5cc0 | |
parent | f590e8c44f8ab5d083e90f17a9e527901c266092 (diff) |
Fix navbar to have DED and new menu item
-rw-r--r-- | core/templates/core/base.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/templates/core/base.html b/core/templates/core/base.html index 2a3f446..787718b 100644 --- a/core/templates/core/base.html +++ b/core/templates/core/base.html @@ -19,12 +19,13 @@ <nav class="bg-blue-600 p-4"> <div class="container mx-auto flex items-center justify-between"> <div class="flex items-center space-x-4"> - <a href="#" class="text-white text-xl font-semibold">Home</a> + <a href="#" class="text-white text-xl font-semibold">DED</a> <a href="{% url 'engagements:home' %}" class="text-white hover:text-blue-200">Engagement Plans</a> <a href="{% url 'engagements:regulatedentities' %}" class="text-white hover:text-blue-200">Regulated Entities</a> <a href="#" class="text-white hover:text-blue-200">Reporting</a> <a href="#" class="text-white hover:text-blue-200">Dashboards</a> + <a href="#" class="text-white hover:text-blue-200">Regulatory Instruments</a> </div> <div class="flex items-center space-x-4"> {% if request.user.is_authenticated %} |