Here, we'll discuss our Menu/Navigation menu. Let's deep dive into it.
We have two types of menus for two different layouts.
We are using a JSON file to store all menu lists and render them in our menus. You can find these menu files in the templates/layout/partials/menu/horizontal
or vertical
folder.
json/vertical_menu.json
menu for HORIZONTAL layoutjson/vertical_menu.json
menu for VERTICAL layoutTo add your new menu item in menu/navigation, you need to add your page details in your preferred menu file (ex: For vertical menu vertical_menu.json
).
urls.py
file in app (ex: test) which you've created and add the application path.from django.urls import path
from .views import testView
urlpatterns = [
path(
"",
testView.as_view(template_name="test.html"),
name="test",
),
]
{
"url": "test"
"name": "Test Page",
"icon": "menu-icon tf-icons bx bx-envelope",
"slug": "test"
},
{
"name": "Test",
"icon": "menu-icon tf-icons bx bx-file",
"slug": "Test",
"submenu": [
{
"url": "test",
"name": "test Page",
"slug": "test"
},
]
}
locale/fr/django.po
files.
To fill the url with url_path or an external link, it is mandatory to add one more json. "external": true
{
"url": "dashboard/crm/",
"external": true,
"name": "test Page",
"slug": "test"
},
{
"url": "http://example.com",
"external": true,
"name": "Dummy",
"slug": "Dummy"
},