Code Monkey home page Code Monkey logo

django-doma's Introduction

doma

doma is a simple document managment app for django. It provides the necessary models and view and is ready to be included into your project.

django_doma_logo

Idea

Many modern (accounting, business) applications work with digital documents. This app aims to provide easy integration of digital documents into your Django application, if you have no central Document Management System like Mayan EDMS.

Features

Django-doma currently provides some models which are ready to be used in our application

  • Document model to store documents
  • DocumentType to group/order documents

Documents will become readonly after a while, this helps storing your documents audit-proof. Once readonly, Documents can not be deleted, but only "replaced", i.e. an updated version is linked, but the original is kept in place (as a sort of version control).

Apps using django-doma

Compatibility

Tested with the following versions of Python/Django:

  • Django: 2.2, 3.0, 3.1, 3.2
  • Python: 3.7, 3.8, 3.9

Installation

Install django-doma using pip:

$ pip install django-doma

Quick start

  1. Add "doma" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
    ...
    "doma",
]
  1. Include the polls URLconf in your project urls.py like this::

    path('doma/', include('doma.urls')),

  2. Run python manage.py migrate to create the doma models.

  3. Visit http://127.0.0.1:8000/doma/ to start accounting.

License

MIT

Copyright

2021, Florian Rämisch

Authors

  • Florian Rämisch

django-doma's People

Contributors

olf42 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.