Skip to content
This repository has been archived by the owner on Aug 15, 2023. It is now read-only.

angvp/django-oml

Folders and files

NameName
Last commit message
Last commit date

Latest commit

65b9697 · Aug 21, 2015

History

57 Commits
Dec 8, 2014
Dec 12, 2013
Oct 23, 2014
Jul 13, 2015
Dec 12, 2013
Sep 30, 2013
Sep 30, 2013
Jul 13, 2015
Jul 13, 2015
Oct 18, 2014
Dec 12, 2013
Aug 21, 2015

Repository files navigation

django-oml

https://travis-ci.org/angvp/django-oml.png?branch=master https://coveralls.io/repos/angvp/django-oml/badge.svg?branch=master Requirements Status 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.8

With python 2.7 and > 3.3 support.