Top

Tags: Django

Building A Blog Application With Django

Jul 26, 2020 | 790 views

#Django

Refer to: Here

Extending The Application

Adding Comments System – https://djangocentral.com/creating-comments-system-with-django/

Adding Pagination to the Index page – https://djangocentral.com/adding-pagination-with-django/

Integrating PostgreSQL with Django – https://djangocentral.com/using-postgresql-with-django/

Configuring static assets – https://djangocentral.com/static-assets-in-django/

Integrating Summernote WYSIWYG Editor – Integrating Summernote WYSIWYG Editor in Django 

Creating Sitemap – https://djangocentral.com/creating-sitemaps-in-django/

Creating Feeds – https://djangocentral.com/creating-feeds-with-django/

Deploy Django Application – How To Deploy Django App with Nginx, Gunicorn, PostgreSQL and Let’s Encrypt SSL on Ubuntu

Comments: 0

Django ORM Tutorial – The concept to master Django framework

Jul 26, 2020 | 784 views

#Django

From: https://data-flair.training/blogs/django-orm-tutorial/

Django ORM has been mentioned in all of the database & model tutorials. It is an amazing implementation to increase development speed. Yes, there are other ORMs and some people don’t even like ORMs. No worries!! If you didn’t understand what an ORM is. We will cover that in this tutorial.

The other important topic is of Querysets. These are an important part of ORMs in general. We have used Querysets many times in our tutorials. In this Django ORM tutorial, Querysets are also explained from the very basics. Let’s get started.

1. ORMs

  • What is an ORM?
  • The Problem Solved by an ORM
  • Django ORM

2. Querysets in Django

3. Different Relationships between Fields

  • One to One Relationship
  • One to Many Relationships
  • Many to Many Relationships

4. Conclusion

  • The Problems with Django ORM


Comments: 2