-
DJANGO
Django comes with baked-in functionality for generating sitemaps dynamically using the sitemap framework.A sitemap is an XML file that informs search engines such as Google, the pages of your website, their relevance, and how frequently they are updated.…
-
DJANGO
In Django Media files are the files uploaded by users on the system. However, like static files media files shouldn't be trusted. There are always security concerns when dealing with user-uploaded content. Notably, it’s important to validate all uploaded…
-
DJANGO
Managing static assets such as CSS, Javascript, fonts are core components of any modern web application Django provides us a large degree of freedom and flexibility on managing and serving static assets in different environments.In this article, we will …
-
DJANGO
A WYSIWYG (pronounced "wiz-ee-wig") editor or program is one that allows a developer to see what the result will look like while the interface or document is being created. WYSIWYG is an acronym for "what you see is what you get".There are many WYSIWYG e…
-
DJANGO
Django is a high level full-stack open-source web framework written in Python, that encourages rapid development and clean, pragmatic design.Django, in its ‘out-of-the-box’ state, is set up to communicate with SQLite - a lightweight relational database i…
-
DJANGO
Django's prominent feature is the admin interface, which makes it stand out from the competition. It is a built-in app that automatically generates a user interface to add and modify a site's content.The built-in administration interface that is very use…
-
DJANGO
In this tutorial, we will build a basic commenting system for a Django 2.X app, which lets readers add comments on posts.Here is a preview of what we are going to build by the end of this tutorial.Pre-RequirementsBefore diving into the tutorial I am assu…
-
DJANGO
While working on a modern web application quite often you will need to paginate the app be it for better user experience or performance. Fortunately, Django comes with built-in pagination classes for managing paginating data of your application.In this a…
-
DJANGO
In this tutorial, we’ll build a Blog application with Django that allows users to create, edit, and delete posts. The homepage will list all blog posts, and there will be a dedicated detail page for each individual post. Django is capable of making more …
-
DJANGO
Django is among the most recommended full stack web development frameworks at the moment. Django follows Model-Template-View (MTV) architecture. This is something similar to the traditional MVC( Model-View_Controller) architecture, but in Django, views a…