Django reusable app to show pretty formatted copyright years
Project description
django-djcopyright is a django reusable application to show pretty formatted copyright years
Installation
Obtain your copy of source code from the git repository: git clone https://github.com/vint21h/django-djcopyright.git. Or download the latest release from https://github.com/vint21h/django-djcopyright/tags/.
Run python ./setup.py install from repository source tree or unpacked archive. Or use pip: pip install django-djcopyright.
Configuration
Add "djcopyright" to settings.INSTALLED_APPS.
INSTALLED_APPS += (
"djcopyright",
)
Settings
- DJCOPYRIGHT_START_YEAR
Contains year to start show copyright from. Defaults to 1970.
- DJCOPYRIGHT_FORMAT_STRING
Contains format string to show copyright. Defaults to "{start_year} - {current_year}".
- DJCOPYRIGHT_SHOW_CURRENT_YEAR
Show current year in copyright string. Defaults to True.
- DJCOPYRIGHT_SHOW_START_YEAR
Show start year in copyright string. Defaults to True.
Usage
If you want always have COPYRIGHT_YEARS variable in templates context, just add "djcopyright.context_processors.djcopyright_years" to settings.TEMPLATE_CONTEXT_PROCESSORS
TEMPLATE_CONTEXT_PROCESSORS += (
"djcopyright.context_processors.djcopyright_years",
)
Else you can use djcopyright_years assignment templatetag which can be loaded from djcopyright_tags.
For example:
{% load djcopyright_tags %}
{% djcopyright_years as COPYRIGHT_YEARS %}
{{ COPYRIGHT_YEARS }}
Licensing
django-djcopyright is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. For complete license text see COPYING file.
Contacts
Project Website: https://github.com/vint21h/django-djcopyright/
Author: Alexei Andrushievich <vint21h@vint21h.pp.ua>
For other authors list see AUTHORS file.
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
Built Distribution
File details
Details for the file django-djcopyright-0.3.0.tar.gz
.
File metadata
- Download URL: django-djcopyright-0.3.0.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d329abb1b64fbef1206254e612a1d414b30a299ea90b76be24eb43ee113efeee |
|
MD5 | 6d866c0b133656a0cb7f1303aa0b66ee |
|
BLAKE2b-256 | ce88a2a9b5e1fbc169b5614a0f47f570691028e5eba6385fed11e484d04a3441 |
File details
Details for the file django_djcopyright-0.3.0-py2-none-any.whl
.
File metadata
- Download URL: django_djcopyright-0.3.0-py2-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d47893bb96e12d71ea259182d17f20cfbeecb5e7c9f2d62d42ec828a4784baa8 |
|
MD5 | 3292974695da1979f643bc9b76c400ff |
|
BLAKE2b-256 | 09b06ab7484cdd2d40228b833c6b17c4dc0d3a118401c3fc57cdf538888bb87d |