Django app that provides theming for UMD Libraries applications.
pip install django-umd-lib-styleAdd umd_lib_style to the INSTALLED_APPS list in your Django
project's settings.py file:
INSTALLED_APPS = [
...,
'umd_lib_style',
...,
]To get some useful values (application name and version, navigation links)
in the context for every request, add this context processor to your
project's settings.py:
TEMPLATES = [
{
'OPTIONS': {
'context_processors': [
...,
'umd_lib_style.context_processors.app_info',
],
},
},
]This app comes with a base template that provides the basic layout for the page (header with environment banner, logo, application name, navigation links, and a footer with the application name and version, and the UMD web accessibility link).
The easiest way to get the default page layout on your app's pages is to
create a base.html template for your views that extends the
umd_lib_style/base.html template:
{% extends 'umd_lib_style/base.html' %}
{% block head %}
... any HTML that should go into every page's <head> element ...
{% endblock %}
{% block main %}
... any HTML that should precede a specific page's content ...
{% block content %}{% endblock %}
... any HTML that should follow a specific page's content ...
{% endblock %}Then, your individual page templates would extend this template, and
supply their content in the content block:
{% extends 'my_app/base.html` %}
{% block content %}
<p>Hello, world!</p>
{% endblock %}The umd-lib-style base template includes an h1 element whose content is
taken from the value of the title context variable. It will also render
any messages in the context. Both of these are rendered before the main
block.
If you have enabled the umd_lib_style.context_processors.app_info
context processor, then you will have access to the following variables in
all of your templates:
application_name(str)application_version(str)navigation_links(dict)footer_links(dict)
Many of these are controlled by settings from your settings.py file.
There are some additional values you should set in your settings.py:
- Type: String
- Default value:
None
The application version is taken from this package's version using
importlib.metadata.version(PROJECT_PACKAGE_NAME). That version is
available in templates as application_version.
- Type: String
- Default value:
"App"
Application name to be displayed in the header and footer. Available in
templates as application_name.
- Type: Dictionary or string
- Default value:
{}
Dictionary mapping view names to labels. It is used to generate the
navigation links in the header. Available in templates as navigation_links.
If a string is given, it is interpreted as the fully qualified name for a
callable that will be run to generate the navigation links dictionary at
request time. It must accept a single argument, a django.http.HttpRequest
object representing the current request.
- Type: Dictionary or string
- Default value:
{}
Dictionary mapping view names to labels. It is used to generate the
navigation links in the footer. Available in templates as footer_links.
If a string is given, it is interpreted as the fully qualified name for a
callable that will be run to generate the navigation links dictionary at
request time. It must accept a single argument, a django.http.HttpRequest
object representing the current request.
- Type: String
- Default value:
"development"
Used to trigger the display of the standard environment banner at the top
of every page. Should be one of "development", "test", or "qa". Any
other value will suppress the display of the environment banner.
The included stylesheet defines a number of values using CSS custom
properties. Many of these are color values, but a few deal with fonts and
layout. They are all applied using the :root pseudo-element. See
umd_lib_style.css
for the full list.
In addition to providing basic thematic and layout styling in accordance
with UMD's brand guidelines and the design of the UMD Libraries' other web
UIs, the included CSS also provides some semantic classes for styling
individual button elements.
| Class name | Use for buttons that ... |
|---|---|
create |
... immediately create or add a resource. |
edit |
... display a form or other method of modifying a resource. |
update |
... immediately save an already existing resource. |
delete |
... immediately remove a resource. |
See the LICENSE file for license rights and limitations (Apache 2.0).