What is the best front end for Django?

Well you could use Django for the frontend too. Django comes packaged with a templating system very similar to Jinja . This will allow you to built simple or complex pages that will render in HTML. You can also build on the HTML further using any Javascript or Javascript framework of your choice.

Read more

Should I use a frontend with Django?

You can’t use Django for front-end development because front-end means rendering of code in the browser itself and browsers are unable to render Python code. A browser can understand HTML, CSS and JS (few more technologies) but not python language. If you want to use framework for front-end then go for Angular.

Read more