Metadata-Version: 2.1
Name: nobinobi-staff
Version: 0.1.5
Summary: Application staff for nobinobi
Home-page: https://github.com/prolibre-ch/nobinobi-staff
Author: Florian Alu
Author-email: alu@prolibre.com
License: UNKNOWN
Keywords: nobinobi-staff
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: djangorestframework (==3.12.2)
Requires-Dist: django (==3.1.7)
Requires-Dist: django-model-utils (==4.1.1)
Requires-Dist: arrow (==1.0.3)
Requires-Dist: django-crispy-forms (==1.11.1)
Requires-Dist: django-extensions (==3.1.1)
Requires-Dist: django-bootstrap-datepicker-plus (==3.0.5)
Requires-Dist: django-admin-rangefilter (==0.7.0)
Requires-Dist: DateTimeRange (==1.0.0)
Requires-Dist: djangorestframework-datatables (==0.5.2)
Requires-Dist: Pillow (==8.1.2)
Requires-Dist: django-import-export (==2.5.0)
Requires-Dist: nobinobi-core (==0.1.3)

=============================
Nobinobi Staff
=============================

.. image:: https://badge.fury.io/py/nobinobi-staff.svg
    :target: https://badge.fury.io/py/nobinobi-staff

.. image:: https://travis-ci.com/prolibre-ch/nobinobi-staff.svg?branch=master
    :target: https://travis-ci.com/prolibre-ch/nobinobi-staff

.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-staff/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/prolibre-ch/nobinobi-staff

.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/shield.svg
     :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/
     :alt: Updates

.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/python-3-shield.svg
     :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-staff/
     :alt: Python 3

Application staff for nobinobi

Documentation
-------------

The full documentation is at https://nobinobi-staff.readthedocs.io.

Quickstart
----------

Install Nobinobi Staff::

    pip install nobinobi-staff

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'nobinobi_staff.apps.NobinobiStaffConfig',
        ...
    )

Add Nobinobi Staff's URL patterns:

.. code-block:: python

    from nobinobi_staff import urls as nobinobi_staff_urls


    urlpatterns = [
        ...
        path('', include(nobinobi_staff_urls)),
        ...
    ]

Features
--------

* TODO

Running Tests
-------------

Does the code actually work?

::

    source <YOURVIRTUALENV>/bin/activate
    (myenv) $ pip install tox
    (myenv) $ tox


Development commands
---------------------

::

    pip install -r requirements_dev.txt
    invoke -l


Credits
-------

Tools used in rendering this package:

*  Cookiecutter_
*  `cookiecutter-djangopackage`_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage




History
-------

0.1.5 (2021-03-12)
++++++++++++++++++++

* Add an export function for Absence
* Update requirements.
* Update traduction FR.

0.1.4 (2020-10-29)
++++++++++++++++++++

* Add fields ["picture", "nationality", "civil_status", "status", "status_modified", "created", "modified"].
* Rename field "avs" to "social_security_number".
* Rename field "active" to "active_status".
* Add method to archive staff when select in admin staff list.
* Update search_field, list_display, list_filter fields.
* Remove load absence_type auto, now you have to load data.
* Update traduction FR.

0.1.3.1 (2020-09-08)
++++++++++++++++++++

* Update for staff

0.1.3 (2020-08-28)
++++++++++++++++++

* Update

0.1.0 (2020-08-20)
++++++++++++++++++

* First release on PyPI.


