Django Tutorials

Mastering Django 8

Mastering Django: Forms

HTML forms are a core component of modern websites. From Google’s simple search box to large, multi-page submissions, HTML forms are the primary means of collecting information from website visitors and users. The code for a basic HTML form is simple, for example: The <form></form> HTML tags define the form element, and each of the …

Mastering Django: Forms Read More »

Mastering Django 7

Mastering Django: Admin

A web-based administrative back end is a standard feature of modern websites. The administrative interface, or admin for short, allows trusted site administrators to create, edit and publish content, manage site users, and perform other administrative tasks. Django comes with a built-in admin interface. With Django’s admin you can authenticate users, display and handle forms, …

Mastering Django: Admin Read More »

Scroll to Top