django-modelnotes

a django application to add notes to models


Keywords
django, many-to-many, manytomany, model, notes
License
GPL-3.0
Install
pip install django-modelnotes==0.0.0.dev1

Documentation

django-modelnotes

A django-modelnotes is a reusable django application for adding notes to models.

This app is still under development

Author David Slusser
Description A django application for adding notes to models.
Requirements Python 3.x
Django 3.x

Documentation

Installation

  • install via pip
pip install django-modelnotes
  • add notes to your INSTALLED_APPS
    INSTALLED_APPS = [
        ...
        'modelnotes',
    ]
  • to include views to manage notes, add the following to your project-level urls.py:
   
    urlpatterns = [
        ...
        path('modelnotes/', include('modelnotes.urls', )),
    ]
  • run migrations
python ./manage.py migrate modelnotes

Usage

add to models via GenericRelation

from modelnotes.models import ModelNoteField

class MyModel(models.Model):
    ...
    notes = ModelNoteField()

License

django-modelnotes is licensed under the MIT license (see the LICENSE file for details).

Features

  • included admin page with search, filters, and bulk editing
  • variable scope; notes can be scoped to private, group or public
  • permission controls available; notes can be set with read, edit, and delete permissions
  • list views and bootstrap-based templates included