Articles, discussions, and solutions for Python’s Django web framework.

How to Upload File in Django?

Summary: In this tutorial, you will learn how to handle file upload using model and form in Django framework. In Django, you can handle file uploads using a model field…

0 Comments

What is Slug in Django?

A Slug in Django is a string that contains only letters, numbers, underscores, or hyphens. For examples, 'hello-world', 'what-is-slug', 'learn-django', etc. Slugs are generally used in URLs. For example, in…

0 Comments