Hello,
I followed the instructions correctly when installing Python and Django. When I try to start the project by running "python3 manage.py runserver", the dashboard appears correctly at "127.0.0.1:8000/#" but none of the menu options are working. Can you help me understand what the problem might be?
Hi,
The Django Starterkit only provides you with layout and assets integration so you can easily start with your Django app. However, It does not replicate all HTML templates. You can configure new routes and create your custom pages and copy paste their HTML code from the HTML version and build your own pages within Django. The menu links are shown as demos and you can make your own menu structure by adapting it to your project needs. Also, you can reuse any feature from the HTML version as you go.
Regards.