DN Backoffice
Project description
===== dnoticias_backoffice
This package contains all the utilities/components/templates used in the dnoticias.pt backoffices. Our objective is to have in one place the most used HTML components/layouts, this will standardize all the sites and will allow more easy theme/components updates.
Settings
- Add the following variables to the project settings
# Base full URL (like https://subdomain.example.com)
BASE_URL = ""
# Verbose site name (like Edição, Assinaturas, etc)
SITE_NAME = ""
- Add the context processor in your settings and the slippers builtin (to avoid writing {% load slippers %} in every template where we use components).
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, "templates")],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
...
'dnoticias_backoffice.context_processors.backoffice', # <-
],
"builtins": ["slippers.templatetags.slippers"], # <-
},
},
]
- Add 'slippers' and 'dnoticias_backoffice' into your installed apps
INSTALLED_APPS = [
...
'dnoticias_backoffice',
'slippers',
...
]
How to load custom components
This project already has his own components, to load custom components without crashing the project you just need to create a py file (e.g: components.py) in the project folder (where the settings.py file is located at), create a function called e.g: load_custom_components(), inside this function you will call the register_components function (https://mitchel.me/slippers/docs/registering-components/) and finally, go to your apps.py file, locate or create the def ready() function and then import and add the load_custom_components() function call.
How to add/update/remove menu items
Create a menu.py file inside the project folder (where the settings.py file is located at), create
a function called e.g: load_menu(), inside this function you need to call register_menu_item function
imported from dnoticias_backoffice.menu
. When you finally defined all the menu items you need to
import and call the load_menu() function into the def ready() function on the apps.py file (just
like we call the custom components)
Project templates structure
templates/components
includes all the slipper components used along the backoffice.
templates/backoffice
includes the masters templates and includes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dnoticias_backoffice-2.0.1.tar.gz
.
File metadata
- Download URL: dnoticias_backoffice-2.0.1.tar.gz
- Upload date:
- Size: 47.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc1863527df5b677d00dc4680261ff37f4a24d052e1282ed80fb9f1f9360d3ab |
|
MD5 | 3cedd2bbbd61ed3619bc77524a175be8 |
|
BLAKE2b-256 | 845d9725baac1d2f6e433cfccc162dec5da3c289ae46e3f10c427e220a7f8829 |