Programming Tutorials

Latest

 thumbnail

Django Admin Create Superuser

August 13, 2021

Before you can login to the admin panel of your Django project, you'll need to create a superuser account. This is done...

 thumbnail

How to Enable PHP In Apache

August 13, 2021
 thumbnail

How to Get and Set Session Data in Django

August 10, 2021

Django sessions are a great way of storing some information about a user server-side where storing it front-end is not a...

 thumbnail

How to Return JSON-Encoded Response in Django

August 10, 2021

To return a JSON-encoded response in Django, use the JsonResponse class from django.http in your app views.py file. ...

 thumbnail

How to Create a New App in Django

August 10, 2021

One of the main principles behind a Django project is to have each significant "component" contained within its own app....

 thumbnail

How to get Form Input ID, Label & Name in Django Template

August 06, 2021

In some cases, you'll want two have more control over the HTML forms in your Django templates and build inputs manually....