I don't understand how it works to be able to use other pages since in django they are redirected returning with render and as it is in the template it is totally different
Hi Jose Luis,
You can check the url.py file as a starting point; starterkit/dashboards/urls.py
For this route, it loads the HTML template file.
starterkit/_templates/pages/dashboards/index.html
You can copy starterkit/dashboards/ folder to create another module for more pages and define the route in the urls.py file.
Thanks