Author Picture

Kim Majali


Django Dialogue App

Author Avatar wrote on 26/05/2022

Create App

1.type python manage.py startapp dialogue dialogue is an example of app name

Read more

Django Notifications App

Author Avatar wrote on 26/05/2022

Install Django Notifications App

We will use this app https://github.com/django-notifications/django-notifications - Connect to preview They have good documentation about how to install and use this app, just read README file. Read more

Djano Contents App

Author Avatar wrote on 26/05/2022

This app allows editing the contents of the static pages:

Tow types of contents

1.Text-only contents, to edit text on critical pages like the index page

Read more

Django Contact Us App with Ajax

Author Avatar wrote on 26/05/2022

1.Create contact_us app by tiping in our terminal :


python manage.py startapp contact_us
Read more

Django Dynamic Pages with translations

Author Avatar wrote on 26/05/2022

1.Create a new app

python manage.py startapp pages

2.Add this app to INSTALLED_APPS list in your main settings.py file


INSTALLED_APPS = [
    ...
    'pages.apps.PagesConfig',
    ...
    ]
Read more

Topics: Apps