Django - Simple Web

The purpose of this small website is to follow the guidelines of good practices applied to development with Django Framework.

Site structure

The project management files are located in a folder identified as web_project. All the apps are inside the apps folder. All templates are located in a single folder at the root, this has the advantage that the designer does not have to go through the project to find them, but it has the disadvantage that all the files that make up the app are no longer in a single place. Although the app folder and its corresponding template folder share the same name, facilitating their identification.


.
├── apps
│   ├── blog_app
│   ├── contact_app
│   ├── pages_app
│   ├── services_app
│   ├── social_app
│   └── web_app
│
├── media
├── static
├── templates
│   ├── base
│   ├── blog_app
│   ├── contact_app
│   ├── pages_app
│   ├── services_app
│   └── web_app
│
├── db.sqlite3
├── requirements.txt
├── manage.py
└── web_project
    ├── __init__.py
    ├── settings.py
    ├── urls.py
    └── wsgi.py

    

Description of applications

The website is made up of:

implementations


For more details see the github repository: Django_simple_website.