Elegant, responsive, flexible, and lightweight notification plugin.
Project description
IziToast
izitoast is an Elegant, responsive, flexible, and lightweight notification plugin with no dependencies.
Installation
Use the package manager pip to install izitoast.
Usage
Add 'izitoast' to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
'...',
'izitoast',
]
inside base template file at last position include a single line of code
...
{% include 'includes/izitoast.html' %}
...
Working
from izitoast.functions import izitoast
def func(request):
...
message = {
'raw': [
{
'tag': 'success',
'item': "Success message"
},
{
'tag': 'info',
'item': "Information message!"
},
{
'tag': 'warning',
'item': "Warning message!"
},
{
'tag': 'danger',
'item': "Error message!"
}
],
"position": "topRight",
"transition_in": "flipInX",
"transition_out": "flipOutX",
"time_out": 9000,
}
izitoast(request=request, model="success", message=message)
return render(request, 'template.html')
generate form.errors
from izitoast.functions import izitoast
def func(request):
...
izitoast(request=request, model="danger", message=form.errors)
return render(request, 'template.html')
Optionals
- position:
Default izitoast shown place "topRight",
It can be: [bottomRight, bottomLeft, topRight, topLeft, topCenter, bottomCenter, center]
- transition_in:
Default izitoast open animation. "flipInX",
It can be: [bounceInLeft, bounceInRight, bounceInUp, bounceInDown, fadeIn, fadeInDown, fadeInUp, fadeInLeft, fadeInRight, flipInX]
- transition_out: Default izitoast close animation. "flipOutX",
It can be: [fadeOut, fadeOutUp, fadeOutDown, fadeOutLeft, fadeOutRight, flipOutX]
- time_out: the default value is 3000.
Dependencies
It uses https://izitoast.marcelodolza.com/ izitoast v1.4.0 scripts and styles.
For message transferring uses messages
from django.contrib import messages
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT Copyright 2022 Abdul Rahim K
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Change Log
0.0.1 (20/12/2022)
- First Release
0.0.2 (20/12/2022)
- Fixed mouse hover close issue
0.0.3 (21/12/2022)
- Bug fixed
0.0.4 (21/12/2022)
- Bug fixed
0.0.5 (21/12/2022)
- Bug fixed
0.0.6 (21/12/2022)
- Bug fixed
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 izitoast-0.0.6.tar.gz
.
File metadata
- Download URL: izitoast-0.0.6.tar.gz
- Upload date:
- Size: 57.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eba996da296aa6305a53dd4469dd1d07b9781ebde45ded6b627e75ed7a7b3a31 |
|
MD5 | ff9d35c8480b12dc21d330bdd7da4901 |
|
BLAKE2b-256 | e82b784eeb8f98413485206c5dbfd6fa400aa77159f4c1e65982d55d44dd5e19 |
File details
Details for the file izitoast-0.0.6-py3-none-any.whl
.
File metadata
- Download URL: izitoast-0.0.6-py3-none-any.whl
- Upload date:
- Size: 58.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af85ca5aaea801d67669bb49b298135016303631b83f97b8367665886e6649bd |
|
MD5 | 3cf9854ae9c314abf53322c253ccaa58 |
|
BLAKE2b-256 | db76550704585c38693022f24796580bb5eaffb4330fca137878db94c775c006 |