Django app for adding a Tip of the Day to any page
Project description
Tip of the Day (totd)
A Django application that allows you to create tips or hints to be displayed at the top of specific pages on your website. This app allows you to define tips in the Django Admin, assign them to specific pages, and give a date range in which they should be displayed.
Installation
Install the Django Tip of the Day package:
pip install django-totd
Settings
Totd requires the Django Sites application.
Add django.contrib.sites and totd to your INSTALLED_APPS:
INSTALLED_APPS = [
...
'django.contrib.sites'
`totd',
]
Add the tips Context Processor:
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
...
"totd.context_processors.tips",
]
},
}
]
Templates
Totd works a lot like the Django Messages framework, you should add it to the top of the content portion of your base template so that it can be used in any page extending that template. The URL path of the request will be used to decide which Tip to show.
Add the following snippet to your base template:
{% if tip %}
<div class="alerts">
<div class="alert {{ tip.tags }}"><strong>{% trans "Tip:" %} </strong>{{ tip.text|safe }}</div>
</div>
{% endif %}
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-totd-1.0.2.tar.gz.
File metadata
- Download URL: django-totd-1.0.2.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da3b40b83166823a28c7ab7dbca2a7fdb516b96521bf8d78b26ffffb8b24c503
|
|
| MD5 |
ede6eb2bf747a9f3548fb950efa5112a
|
|
| BLAKE2b-256 |
560529a42f162a37fb55f222e8ebb5b743e405d91a99dbaefbcecc5193f75929
|
File details
Details for the file django_totd-1.0.2-py3-none-any.whl.
File metadata
- Download URL: django_totd-1.0.2-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
676d1ad822e215742ef49237ac24b3344e5914661e0a352ff35b6fb66d3d03c0
|
|
| MD5 |
81b6a92005777152aedaff9d488ddfe9
|
|
| BLAKE2b-256 |
b1732fa3d909e2f6e77532632fcf770c166d682833f1e995312f355439be7719
|