Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angvp/django-oml
Object Moderation Layer
https://github.com/angvp/django-oml
django django-admin django-models django-permissions permissions python
Last synced: 16 days ago
JSON representation
Object Moderation Layer
- Host: GitHub
- URL: https://github.com/angvp/django-oml
- Owner: angvp
- License: other
- Archived: true
- Created: 2013-09-30T19:03:23.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T08:13:48.000Z (over 4 years ago)
- Last Synced: 2024-05-22T15:08:34.708Z (6 months ago)
- Topics: django, django-admin, django-models, django-permissions, permissions, python
- Language: Python
- Size: 279 KB
- Stars: 12
- Watchers: 12
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
django-oml
========================.. image:: https://travis-ci.org/angvp/django-oml.png?branch=master
:target: https://travis-ci.org/angvp/django-oml
.. image:: https://coveralls.io/repos/angvp/django-oml/badge.svg?branch=master
:target: https://coveralls.io/r/angvp/django-oml?branch=master.. image:: https://requires.io/github/angvp/django-oml/requirements.png?branch=master
:target: https://requires.io/github/angvp/django-oml/requirements/?branch=master
:alt: Requirements Status.. image:: https://codeclimate.com/github/angvp/django-oml/badges/gpa.svg
:target: https://codeclimate.com/github/angvp/django-oml
:alt: Code Climate
Welcome to the documentation for django-oml!
OML means Object Moderation Layer, the idea is to have a mixin model that
allows you to moderate several kinds of content.On config set up a dictionary ::
OML_CONFIG = {
# True if some groups wont be moderated
'OML_EXCLUDE_MODERATED': True/False,# List of groups id that will be omitted
'OML_EXCLUDED_GROUPS': []}
This is still a project in development
Running the Tests
------------------------------------You can run the tests with via::
python setup.py test
or::
python runtests.py
This project plays well with the following Django versions:
- Django 1.5
- Django 1.6
- Django 1.7
- Django 1.8With python 2.7 and > 3.3 support.