Please, on django why didn't you give even one exemple of how you link pages in _menuSibar ?
Hi Meschac Lubula,
To link the menu element "File Manager" with the app file manager, you can follow these steps:
You can refer from the existing Dashboards module or reuse the existing dashboard module in your project.
Inside the dashboard/urls.py file, create a URL pattern for your page. For example:
# dashboard/urls.py
from django.urls import path
from . import views
urlpatterns = [
# ... other dashboard URLs ...
path("file-manager/", views.file_manager, name="file_manager"),
]
<a href="%7B%%20url%20"file_manager"%20%%7D%22%20class=%22menu-link" target="_blank" rel="noopener noreferrer">File manager</a>
I want to link the menu's elements "File manager" with the app file manager, I don't find details in the documentation