Top

Tags: Linux InstallGuide Django Web-frontend Python Storage HPC Docker k8s Bootstrap

Building A Blog Application With Django

Jul 26, 2020 | 859 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

4.4 Git on the Server - Setting Up the Server

Jul 26, 2020 | 754 views

#Linux

Check out from:  https://git-scm.com/book/en/v2/Git-on-the-Server-Setting-Up-the-Server

  • Tip to get only the remote URL:  git config --get remote.origin.url

Comments: 0

Django ORM Tutorial – The concept to master Django framework

Jul 26, 2020 | 856 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

Bootstrap For Beginners - Part Two (Bootstrap Containers)

Jul 26, 2020 | 826 views

#Bootstrap


Introduction
 
I have started an article series on Bootstrap. Read the first part here,
In this article we will learn about Containers and then we will understand about Bootstrap Container classes by creating examples. So by using this we can easily create interactive, responsive website layouts.
 
Containers: In Bootstrap we can contain elements to wrap site contents.
 
There are two Bootstrap Container classes 
  1. The .container class used to provide a responsive fixed width container.
  2. The .container-fluid class used to provide a full width container.
We have to note that we cannot put a container inside another container since it is not nestable.

Example 1: Using .container class(responsive fixed width container)
 
In this example we will create a simple Bootstrap page. Using ".container" class we will create fixed width container that is responsive for different devices. In this we will write some text. We will have some space on left and right side of page by writing the following code. 

Keep going!

Comments: 0