django-siteflags 1.3.0
pip install django-siteflags
Released:
Reusable application for Django allowing users to flag/bookmark site objects
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD 3-Clause License)
- Author: Igor `idle sign` Starikov
Classifiers
- Development Status
- License
- Operating System
- Programming Language
Project description
https://github.com/idlesign/django-siteflags
Description
Reusable application for Django allowing users to flag/bookmark site objects
So you want a user to be able to put some flags on certain site entities.
Let’s say you need a kind of bookmark powered service, or a site where content is flagged and moderated, or a simplified rating system, or something similar.
Inherit you model from siteflags.models.ModelWithFlag and you’re almost done.
Like that:
# myapp/models.py
from siteflags.models import ModelWithFlag
class Article(ModelWithFlag):
... # Some model fields here.
And like so:
# myapp/views.py
from django.shortcuts import get_object_or_404
from .models import Article
def article_details(request, article_id):
article = get_object_or_404(Article, pk=article_id)
user = request.user
article.set_flag(user)
article.is_flagged(user)
article.remove_flag(user)
...
Quite simple. Quite generic. Read the documentation.
Documentation
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD License (BSD 3-Clause License)
- Author: Igor `idle sign` Starikov
Classifiers
- Development Status
- License
- Operating System
- Programming Language
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-siteflags-1.3.0.tar.gz
.
File metadata
- Download URL: django-siteflags-1.3.0.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ee5fe945daea5a8f6748c4473c435449117da2c3971bae11c243fe6c9119480 |
|
MD5 | 1727e65b32e7e494c2904441fe4bc5d1 |
|
BLAKE2b-256 | 4c16488c448fe219464a4269d6d4d8c06efc03ce15af8764321365fedead9606 |
File details
Details for the file django_siteflags-1.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_siteflags-1.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb18b6fe9981a3d802c78316e6b582abbccdd0bce241887615fb5ab255c6ec4a |
|
MD5 | 613a84cc47abc0998b9636b4cfcfa460 |
|
BLAKE2b-256 | aa7b59914e83d26e713a51950b7a3d90f682745161c4c338898a58615ccec495 |