nobinobi-child


Namenobinobi-child JSON
Version 0.1.4.25 PyPI version JSON
download
home_pagehttps://github.com/prolibre-ch/nobinobi-child
SummaryApplication Child for Nobinobi
upload_time2024-02-28 17:46:57
maintainer
docs_urlNone
authorFlorian Alu
requires_python
license
keywords nobinobi-child
VCS
bugtrack_url
requirements nobinobi-staff django-phonenumber-field phonenumbers django-select2 django-bootstrap-modal-forms django-widget-tweaks django-simple-menu django_weasyprint
Travis-CI
coveralls test coverage
            =============================
Nobinobi Child
=============================

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

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

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

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

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

Application Child for Nobinobi

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

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

Quickstart
----------

Install Nobinobi Child::

    pip install nobinobi-child

Add it to your `settings.py`:

.. code-block:: python

    REST_FRAMEWORK = {
        'DEFAULT_AUTHENTICATION_CLASSES': (
            'rest_framework.authentication.BasicAuthentication',
            'rest_framework.authentication.SessionAuthentication',
            'rest_framework.authentication.TokenAuthentication',
        ),
        'DEFAULT_RENDERER_CLASSES': (
            'rest_framework.renderers.JSONRenderer',
            'rest_framework.renderers.BrowsableAPIRenderer',
            'rest_framework_datatables.renderers.DatatablesRenderer',
        ),
        'DEFAULT_FILTER_BACKENDS': (
            'rest_framework_datatables.filters.DatatablesFilterBackend',
        ),
        'DEFAULT_PAGINATION_CLASS': 'rest_framework_datatables.pagination.DatatablesPageNumberPagination',
        'PAGE_SIZE': 50,
    }

Add it to your `INSTALLED_APPS`:

.. code-block:: python

    INSTALLED_APPS = (
        ...
        'phonenumber_field',
        'crispy_forms',
        'django_extensions',
        'rest_framework',
        'rest_framework.authtoken',
        'rest_framework_datatables',
        'menu',
        'bootstrap_modal_forms',
        'widget_tweaks',
        'django_select2',
        'bootstrap_datepicker_plus',
        'nobinobi_core',
        'nobinobi_staff',
        'nobinobi_child.apps.NobinobiChildConfig',
        ...
    )

Add Nobinobi Child's URL patterns:

.. code-block:: python

    from nobinobi_core import urls as nobinobi_core_urls
    from nobinobi_staff import urls as nobinobi_staff_urls
    from nobinobi_child import urls as nobinobi_child_urls


    urlpatterns = [
        ...
        path('', include(nobinobi_core_urls)),
        path('', include(nobinobi_staff_urls)),
        path('', include(nobinobi_child_urls)),
        path('select2/', include('django_select2.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.4.25 (2024-02-28)
+++++++++++++++++++++
* 1168e05 - Fix to add only replacementclassroom in date in absence


0.1.4.24 (2024-02-28)
+++++++++++++++++++++
* 2ef87e7 - Add settings to configure order in absence enfant
* 919a1d0 - fix bug in absence
* Update requirements

0.1.4.23 (2024-01-25)
+++++++++++++++++++++
* 91a185a - Add help text in create and update absence
* Update requirements

0.1.4.22 (2023-11-03)
+++++++++++++++++++++
* 4db264b - fix bug

0.1.4.21 (2023-11-03)
+++++++++++++++++++++
* dd67a4b - fix bug

0.1.4.20 (2023-11-03)
+++++++++++++++++++++
* ce39fa1 - ad remove informations after archivage

0.1.4.19 (2023-11-03)
+++++++++++++++++++++
* 9b7e02c - Add archived field on classroom

0.1.4.18 (2023-11-02)
+++++++++++++++++++++
* 4fbedb9 - Fix bug with date picker
* Update requirements

0.1.4.17 (2023-10-23)
+++++++++++++++++++++
* 2dc2ca9 - Import correctly bootstrap-datetimepicker
* e4bff3b - Fix bug with not import correctly datetimepicker
* 00c3900 - fix default field for apps
* 1f1f272 - check every day if end date of replacement classroom has to be archived
* a089a87 - Fix icon on login page
* Update requirements

0.1.4.16 (2023-09-29)
+++++++++++++++++++++
* b31ab0f - Refont code for check classroom_replacement_set
* Update requirements

0.1.4.15 (2023-09-18)
+++++++++++++++++++++
* e428ed3 - Fix bug on login icon
* 068bba3 - Append a line on top of child tracking log to add a new entry
* a4e62e6 - display only child in progress in absence list
* Update requirements

0.1.4.14 (2023-07-17)
+++++++++++++++++++++
* b6bc75b - add an import extrajs in template base

0.1.4.13 (2023-07-14)
+++++++++++++++++++++
* 7253788 - Rename inline in child's admin
* update requirements

0.1.4.12 (2023-06-14)
+++++++++++++++++++++
* update requirements

0.1.4.11 (2023-05-16)
+++++++++++++++++++++
* 4d81084 - Distinct list of absence create
* update requirements

0.1.4.10 (2023-02-01)
+++++++++++++++++++++
* 1b45fda - Update traduction
* dcc04ea - Add possibility to use default menu or add new one if you use in another program

0.1.4.9 (2023-01-26)
+++++++++++++++++++++
* 9dd851b - fix to use replacementclassroom in absence create

0.1.4.8 (2023-01-24)
+++++++++++++++++++++
* 59e60fa - add filter when add absence in absence list and create button
* update requirements

0.1.4.7 (2022-10-31)
+++++++++++++++++++++
* 8635383 - fix display on many admin menu system

0.1.4.6 (2022-10-26)
+++++++++++++++++++++
* e247fec - Use html safe for autorisations
* 7667e6d - Add settings for ordering and list_display child in admin
* Update requirements

0.1.4.5 (2022-10-24)
+++++++++++++++++++++

* 57b06dd - fix display child detail in smartphone
* 3b25c38 - rename file migrate autorisation
* c4ecd38 - Add field autorisations
* 67a292a - Add collapsed category for admin child for best read
* 446e224 - Update coverage from 6.4.4 to 6.5.0
* dd7807a - Update invoke from 1.7.1 to 1.7.3
* 3ad06ae - Update phonenumbers from 8.12.55 to 8.12.57

0.1.4.4 (2022-09-22)
+++++++++++++++++++++

* ee05d14 - fix if admin and webmaster exist in auto archive child

0.1.4.3 (2022-09-22)
+++++++++++++++++++++

* f2085b0 - bugfix in import User in auto_archive_child job

0.1.4.2 (2022-09-21)
+++++++++++++++++++++

* 6d240a3 - fix bug with auto archive child
* 4cbc105 - fix bug in display list children
* e908dc7 - add papa and maman to list of name of parents
* c2aabe3 - Add setting for module add constraint for log change classroom
* Update traduction
* Update requirements

0.1.4.1 (2022-05-16)
+++++++++++++++++++++

* b2d820c - fix error in signal for autoclose period

0.1.4 (2022-05-16)
+++++++++++++++++++++

* 7eeb34e - Merge branch 'feature/add-end-auto-period-for-child'
* 838cf32 - Merge branch 'feature/add-tracking-log-to-child'
* Update requirements

0.1.3.15 (2022-03-15)
+++++++++++++++++++++

* 0c89a78 - Add showing length for display child list
* Update traduction
* Update requirements

0.1.3.14 (2022-03-11)
+++++++++++++++++++++

* d55eaf1 - Fix load list of child and filter
* 9c494ad - Fix import in models.py
* b013423 - Fix for new system for specify date in method to check if has a classroom
* Update traduction

0.1.3.13 (2022-01-20)
+++++++++++++++++++++

* a472861 - Add new system for replacement classroom
* Update traduction

0.1.3.12 (2022-01-13)
+++++++++++++++++++++

* e5def55 - Change display of information of the day in template page
* Update traduction

0.1.3.11 (2021-12-22)
+++++++++++++++++++++

* 6034030 - Fix bug display modal under menu

0.1.3.10 (2021-12-22)
+++++++++++++++++++++

* 99c3d1c - Reverse order and display of child
* d11a73c - Add system to change display of classroom by settings variable

0.1.3.9 (2021-12-20)
++++++++++++++++++++

* f3e824c - allow blank field language in child
* 8f3d622 - Fix requirements bug
* 01add3f - Set queryset staff in child for use only active staff in dropdown
* 4aecb4c - Display by default only child in progress in admin page for children.
* eb9ca31 - Update text for contact in child list with yes, no

0.1.3.8 (2021-12-14)
++++++++++++++++++++

* c5a4b25 - Change display and ordering in full name of child
* 2a0c8ea - Update import from django bootstrap plus
* Update requirements

0.1.3.7 (2021-06-07)
++++++++++++++++++++

* Update requirements for security Fix

0.1.3.6 (2021-04-13)
++++++++++++++++++++

* Update requirements for security Fix

0.1.3.5 (2021-03-31)
++++++++++++++++++++

* 7c0ee7b - Add link to Organisation for classroom
* Update requirements

0.1.3.4 (2021-02-24)
++++++++++++++++++++

* e0bda4d - Set the allowed_login and allowed_group fields to blank.
* e758626 - Update pylint from 2.7.0 to 2.7.1

0.1.3.3 (2021-02-23)
++++++++++++++++++++

* 069d4cf - Added the ability to specify the group for the classes allowed to log in.
* b7c0194, aafe110 - Fix requirements

0.1.3.2 (2021-01-02)
++++++++++++++++++++

* 37be1c1 - Display phone as international for contact
* da16e4a - Removing the display of homeopathy [DEPRECATED]
* Update requirements

0.1.3.1 (2021-21-01)
++++++++++++++++++++

* Remove dependency for django-suit
* Add check for display menu from permission
* Update requirements

0.1.3 (2020-10-12)
++++++++++++++++++++

* Add local in package
* Update requirements

0.1.2 (2020-09-22)
++++++++++++++++++++

* Fix migrations and support for django 4

0.1.1.1 (2020-09-08)
++++++++++++++++++++

* Fix Manifest to add woff woff2 ttf ico
* Add in requirements.txt and setup.py -> djangorestframework-datatables==0.5.2

0.1.1 (2020-09-08)
++++++++++++++++++

* Fix manifest to include JSON and change setup.py publish and version system
* Update Requirement

0.1.0 (2020-08-28)
++++++++++++++++++

* First release on PyPI.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/prolibre-ch/nobinobi-child",
    "name": "nobinobi-child",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "nobinobi-child",
    "author": "Florian Alu",
    "author_email": "alu@prolibre.com",
    "download_url": "https://files.pythonhosted.org/packages/be/9e/e1ab2a7461047b36d914f40631ed6eef48ebd21b7c075303a265e3cf7089/nobinobi-child-0.1.4.25.tar.gz",
    "platform": null,
    "description": "=============================\r\nNobinobi Child\r\n=============================\r\n\r\n.. image:: https://badge.fury.io/py/nobinobi-child.svg\r\n    :target: https://badge.fury.io/py/nobinobi-child\r\n\r\n.. image:: https://travis-ci.org/prolibre-ch/nobinobi-child.svg?branch=master\r\n    :target: https://travis-ci.org/prolibre-ch/nobinobi-child\r\n\r\n.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-child/branch/master/graph/badge.svg\r\n    :target: https://codecov.io/gh/prolibre-ch/nobinobi-child\r\n\r\n.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-child/shield.svg\r\n     :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-child/\r\n     :alt: Updates\r\n\r\n.. image:: https://pyup.io/repos/github/prolibre-ch/nobinobi-child/python-3-shield.svg\r\n     :target: https://pyup.io/repos/github/prolibre-ch/nobinobi-child/\r\n     :alt: Python 3\r\n\r\nApplication Child for Nobinobi\r\n\r\nDocumentation\r\n-------------\r\n\r\nThe full documentation is at https://nobinobi-child.readthedocs.io.\r\n\r\nQuickstart\r\n----------\r\n\r\nInstall Nobinobi Child::\r\n\r\n    pip install nobinobi-child\r\n\r\nAdd it to your `settings.py`:\r\n\r\n.. code-block:: python\r\n\r\n    REST_FRAMEWORK = {\r\n        'DEFAULT_AUTHENTICATION_CLASSES': (\r\n            'rest_framework.authentication.BasicAuthentication',\r\n            'rest_framework.authentication.SessionAuthentication',\r\n            'rest_framework.authentication.TokenAuthentication',\r\n        ),\r\n        'DEFAULT_RENDERER_CLASSES': (\r\n            'rest_framework.renderers.JSONRenderer',\r\n            'rest_framework.renderers.BrowsableAPIRenderer',\r\n            'rest_framework_datatables.renderers.DatatablesRenderer',\r\n        ),\r\n        'DEFAULT_FILTER_BACKENDS': (\r\n            'rest_framework_datatables.filters.DatatablesFilterBackend',\r\n        ),\r\n        'DEFAULT_PAGINATION_CLASS': 'rest_framework_datatables.pagination.DatatablesPageNumberPagination',\r\n        'PAGE_SIZE': 50,\r\n    }\r\n\r\nAdd it to your `INSTALLED_APPS`:\r\n\r\n.. code-block:: python\r\n\r\n    INSTALLED_APPS = (\r\n        ...\r\n        'phonenumber_field',\r\n        'crispy_forms',\r\n        'django_extensions',\r\n        'rest_framework',\r\n        'rest_framework.authtoken',\r\n        'rest_framework_datatables',\r\n        'menu',\r\n        'bootstrap_modal_forms',\r\n        'widget_tweaks',\r\n        'django_select2',\r\n        'bootstrap_datepicker_plus',\r\n        'nobinobi_core',\r\n        'nobinobi_staff',\r\n        'nobinobi_child.apps.NobinobiChildConfig',\r\n        ...\r\n    )\r\n\r\nAdd Nobinobi Child's URL patterns:\r\n\r\n.. code-block:: python\r\n\r\n    from nobinobi_core import urls as nobinobi_core_urls\r\n    from nobinobi_staff import urls as nobinobi_staff_urls\r\n    from nobinobi_child import urls as nobinobi_child_urls\r\n\r\n\r\n    urlpatterns = [\r\n        ...\r\n        path('', include(nobinobi_core_urls)),\r\n        path('', include(nobinobi_staff_urls)),\r\n        path('', include(nobinobi_child_urls)),\r\n        path('select2/', include('django_select2.urls')),\r\n        ...\r\n    ]\r\n\r\nFeatures\r\n--------\r\n\r\n* TODO\r\n\r\nRunning Tests\r\n-------------\r\n\r\nDoes the code actually work?\r\n\r\n::\r\n\r\n    source <YOURVIRTUALENV>/bin/activate\r\n    (myenv) $ pip install tox\r\n    (myenv) $ tox\r\n\r\n\r\nDevelopment commands\r\n---------------------\r\n\r\n::\r\n\r\n    pip install -r requirements_dev.txt\r\n    invoke -l\r\n\r\n\r\nCredits\r\n-------\r\n\r\nTools used in rendering this package:\r\n\r\n*  Cookiecutter_\r\n*  `cookiecutter-djangopackage`_\r\n\r\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\r\n.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage\r\n\r\n\r\n\r\n\r\nHistory\r\n-------\r\n\r\n0.1.4.25 (2024-02-28)\r\n+++++++++++++++++++++\r\n* 1168e05 - Fix to add only replacementclassroom in date in absence\r\n\r\n\r\n0.1.4.24 (2024-02-28)\r\n+++++++++++++++++++++\r\n* 2ef87e7 - Add settings to configure order in absence enfant\r\n* 919a1d0 - fix bug in absence\r\n* Update requirements\r\n\r\n0.1.4.23 (2024-01-25)\r\n+++++++++++++++++++++\r\n* 91a185a - Add help text in create and update absence\r\n* Update requirements\r\n\r\n0.1.4.22 (2023-11-03)\r\n+++++++++++++++++++++\r\n* 4db264b - fix bug\r\n\r\n0.1.4.21 (2023-11-03)\r\n+++++++++++++++++++++\r\n* dd67a4b - fix bug\r\n\r\n0.1.4.20 (2023-11-03)\r\n+++++++++++++++++++++\r\n* ce39fa1 - ad remove informations after archivage\r\n\r\n0.1.4.19 (2023-11-03)\r\n+++++++++++++++++++++\r\n* 9b7e02c - Add archived field on classroom\r\n\r\n0.1.4.18 (2023-11-02)\r\n+++++++++++++++++++++\r\n* 4fbedb9 - Fix bug with date picker\r\n* Update requirements\r\n\r\n0.1.4.17 (2023-10-23)\r\n+++++++++++++++++++++\r\n* 2dc2ca9 - Import correctly bootstrap-datetimepicker\r\n* e4bff3b - Fix bug with not import correctly datetimepicker\r\n* 00c3900 - fix default field for apps\r\n* 1f1f272 - check every day if end date of replacement classroom has to be archived\r\n* a089a87 - Fix icon on login page\r\n* Update requirements\r\n\r\n0.1.4.16 (2023-09-29)\r\n+++++++++++++++++++++\r\n* b31ab0f - Refont code for check classroom_replacement_set\r\n* Update requirements\r\n\r\n0.1.4.15 (2023-09-18)\r\n+++++++++++++++++++++\r\n* e428ed3 - Fix bug on login icon\r\n* 068bba3 - Append a line on top of child tracking log to add a new entry\r\n* a4e62e6 - display only child in progress in absence list\r\n* Update requirements\r\n\r\n0.1.4.14 (2023-07-17)\r\n+++++++++++++++++++++\r\n* b6bc75b - add an import extrajs in template base\r\n\r\n0.1.4.13 (2023-07-14)\r\n+++++++++++++++++++++\r\n* 7253788 - Rename inline in child's admin\r\n* update requirements\r\n\r\n0.1.4.12 (2023-06-14)\r\n+++++++++++++++++++++\r\n* update requirements\r\n\r\n0.1.4.11 (2023-05-16)\r\n+++++++++++++++++++++\r\n* 4d81084 - Distinct list of absence create\r\n* update requirements\r\n\r\n0.1.4.10 (2023-02-01)\r\n+++++++++++++++++++++\r\n* 1b45fda - Update traduction\r\n* dcc04ea - Add possibility to use default menu or add new one if you use in another program\r\n\r\n0.1.4.9 (2023-01-26)\r\n+++++++++++++++++++++\r\n* 9dd851b - fix to use replacementclassroom in absence create\r\n\r\n0.1.4.8 (2023-01-24)\r\n+++++++++++++++++++++\r\n* 59e60fa - add filter when add absence in absence list and create button\r\n* update requirements\r\n\r\n0.1.4.7 (2022-10-31)\r\n+++++++++++++++++++++\r\n* 8635383 - fix display on many admin menu system\r\n\r\n0.1.4.6 (2022-10-26)\r\n+++++++++++++++++++++\r\n* e247fec - Use html safe for autorisations\r\n* 7667e6d - Add settings for ordering and list_display child in admin\r\n* Update requirements\r\n\r\n0.1.4.5 (2022-10-24)\r\n+++++++++++++++++++++\r\n\r\n* 57b06dd - fix display child detail in smartphone\r\n* 3b25c38 - rename file migrate autorisation\r\n* c4ecd38 - Add field autorisations\r\n* 67a292a - Add collapsed category for admin child for best read\r\n* 446e224 - Update coverage from 6.4.4 to 6.5.0\r\n* dd7807a - Update invoke from 1.7.1 to 1.7.3\r\n* 3ad06ae - Update phonenumbers from 8.12.55 to 8.12.57\r\n\r\n0.1.4.4 (2022-09-22)\r\n+++++++++++++++++++++\r\n\r\n* ee05d14 - fix if admin and webmaster exist in auto archive child\r\n\r\n0.1.4.3 (2022-09-22)\r\n+++++++++++++++++++++\r\n\r\n* f2085b0 - bugfix in import User in auto_archive_child job\r\n\r\n0.1.4.2 (2022-09-21)\r\n+++++++++++++++++++++\r\n\r\n* 6d240a3 - fix bug with auto archive child\r\n* 4cbc105 - fix bug in display list children\r\n* e908dc7 - add papa and maman to list of name of parents\r\n* c2aabe3 - Add setting for module add constraint for log change classroom\r\n* Update traduction\r\n* Update requirements\r\n\r\n0.1.4.1 (2022-05-16)\r\n+++++++++++++++++++++\r\n\r\n* b2d820c - fix error in signal for autoclose period\r\n\r\n0.1.4 (2022-05-16)\r\n+++++++++++++++++++++\r\n\r\n* 7eeb34e - Merge branch 'feature/add-end-auto-period-for-child'\r\n* 838cf32 - Merge branch 'feature/add-tracking-log-to-child'\r\n* Update requirements\r\n\r\n0.1.3.15 (2022-03-15)\r\n+++++++++++++++++++++\r\n\r\n* 0c89a78 - Add showing length for display child list\r\n* Update traduction\r\n* Update requirements\r\n\r\n0.1.3.14 (2022-03-11)\r\n+++++++++++++++++++++\r\n\r\n* d55eaf1 - Fix load list of child and filter\r\n* 9c494ad - Fix import in models.py\r\n* b013423 - Fix for new system for specify date in method to check if has a classroom\r\n* Update traduction\r\n\r\n0.1.3.13 (2022-01-20)\r\n+++++++++++++++++++++\r\n\r\n* a472861 - Add new system for replacement classroom\r\n* Update traduction\r\n\r\n0.1.3.12 (2022-01-13)\r\n+++++++++++++++++++++\r\n\r\n* e5def55 - Change display of information of the day in template page\r\n* Update traduction\r\n\r\n0.1.3.11 (2021-12-22)\r\n+++++++++++++++++++++\r\n\r\n* 6034030 - Fix bug display modal under menu\r\n\r\n0.1.3.10 (2021-12-22)\r\n+++++++++++++++++++++\r\n\r\n* 99c3d1c - Reverse order and display of child\r\n* d11a73c - Add system to change display of classroom by settings variable\r\n\r\n0.1.3.9 (2021-12-20)\r\n++++++++++++++++++++\r\n\r\n* f3e824c - allow blank field language in child\r\n* 8f3d622 - Fix requirements bug\r\n* 01add3f - Set queryset staff in child for use only active staff in dropdown\r\n* 4aecb4c - Display by default only child in progress in admin page for children.\r\n* eb9ca31 - Update text for contact in child list with yes, no\r\n\r\n0.1.3.8 (2021-12-14)\r\n++++++++++++++++++++\r\n\r\n* c5a4b25 - Change display and ordering in full name of child\r\n* 2a0c8ea - Update import from django bootstrap plus\r\n* Update requirements\r\n\r\n0.1.3.7 (2021-06-07)\r\n++++++++++++++++++++\r\n\r\n* Update requirements for security Fix\r\n\r\n0.1.3.6 (2021-04-13)\r\n++++++++++++++++++++\r\n\r\n* Update requirements for security Fix\r\n\r\n0.1.3.5 (2021-03-31)\r\n++++++++++++++++++++\r\n\r\n* 7c0ee7b - Add link to Organisation for classroom\r\n* Update requirements\r\n\r\n0.1.3.4 (2021-02-24)\r\n++++++++++++++++++++\r\n\r\n* e0bda4d - Set the allowed_login and allowed_group fields to blank.\r\n* e758626 - Update pylint from 2.7.0 to 2.7.1\r\n\r\n0.1.3.3 (2021-02-23)\r\n++++++++++++++++++++\r\n\r\n* 069d4cf - Added the ability to specify the group for the classes allowed to log in.\r\n* b7c0194, aafe110 - Fix requirements\r\n\r\n0.1.3.2 (2021-01-02)\r\n++++++++++++++++++++\r\n\r\n* 37be1c1 - Display phone as international for contact\r\n* da16e4a - Removing the display of homeopathy [DEPRECATED]\r\n* Update requirements\r\n\r\n0.1.3.1 (2021-21-01)\r\n++++++++++++++++++++\r\n\r\n* Remove dependency for django-suit\r\n* Add check for display menu from permission\r\n* Update requirements\r\n\r\n0.1.3 (2020-10-12)\r\n++++++++++++++++++++\r\n\r\n* Add local in package\r\n* Update requirements\r\n\r\n0.1.2 (2020-09-22)\r\n++++++++++++++++++++\r\n\r\n* Fix migrations and support for django 4\r\n\r\n0.1.1.1 (2020-09-08)\r\n++++++++++++++++++++\r\n\r\n* Fix Manifest to add woff woff2 ttf ico\r\n* Add in requirements.txt and setup.py -> djangorestframework-datatables==0.5.2\r\n\r\n0.1.1 (2020-09-08)\r\n++++++++++++++++++\r\n\r\n* Fix manifest to include JSON and change setup.py publish and version system\r\n* Update Requirement\r\n\r\n0.1.0 (2020-08-28)\r\n++++++++++++++++++\r\n\r\n* First release on PyPI.\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Application Child for Nobinobi",
    "version": "0.1.4.25",
    "project_urls": {
        "Homepage": "https://github.com/prolibre-ch/nobinobi-child"
    },
    "split_keywords": [
        "nobinobi-child"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00975fed32546cb6b0b11da1f8471f6ddff12ecf05080a841842261d709af226",
                "md5": "1651bc12557b6441bfd2f91fe525f772",
                "sha256": "cfa935c5de8325336aef95fb868b98bcffd0f9e44f9a03c6718b9171c810a1e3"
            },
            "downloads": -1,
            "filename": "nobinobi_child-0.1.4.25-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1651bc12557b6441bfd2f91fe525f772",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 26862704,
            "upload_time": "2024-02-28T17:46:19",
            "upload_time_iso_8601": "2024-02-28T17:46:19.877083Z",
            "url": "https://files.pythonhosted.org/packages/00/97/5fed32546cb6b0b11da1f8471f6ddff12ecf05080a841842261d709af226/nobinobi_child-0.1.4.25-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be9ee1ab2a7461047b36d914f40631ed6eef48ebd21b7c075303a265e3cf7089",
                "md5": "35f8ae192a895dad8d2366462c864131",
                "sha256": "ed57a8086d8c5a5f73cd6948b1958f4595dc786186b04595d068f5d60550d4d3"
            },
            "downloads": -1,
            "filename": "nobinobi-child-0.1.4.25.tar.gz",
            "has_sig": false,
            "md5_digest": "35f8ae192a895dad8d2366462c864131",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 24856799,
            "upload_time": "2024-02-28T17:46:57",
            "upload_time_iso_8601": "2024-02-28T17:46:57.146985Z",
            "url": "https://files.pythonhosted.org/packages/be/9e/e1ab2a7461047b36d914f40631ed6eef48ebd21b7c075303a265e3cf7089/nobinobi-child-0.1.4.25.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-28 17:46:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "prolibre-ch",
    "github_project": "nobinobi-child",
    "travis_ci": true,
    "coveralls": true,
    "github_actions": false,
    "requirements": [
        {
            "name": "nobinobi-staff",
            "specs": [
                [
                    ">=",
                    "0.1.6.8"
                ]
            ]
        },
        {
            "name": "django-phonenumber-field",
            "specs": [
                [
                    "==",
                    "7.3.0"
                ]
            ]
        },
        {
            "name": "phonenumbers",
            "specs": [
                [
                    "==",
                    "8.13.31"
                ]
            ]
        },
        {
            "name": "django-select2",
            "specs": [
                [
                    "==",
                    "8.1.2"
                ]
            ]
        },
        {
            "name": "django-bootstrap-modal-forms",
            "specs": [
                [
                    "==",
                    "3.0.4"
                ]
            ]
        },
        {
            "name": "django-widget-tweaks",
            "specs": [
                [
                    "==",
                    "1.5.0"
                ]
            ]
        },
        {
            "name": "django-simple-menu",
            "specs": [
                [
                    "==",
                    "2.1.3"
                ]
            ]
        },
        {
            "name": "django_weasyprint",
            "specs": [
                [
                    "==",
                    "2.3.0"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "nobinobi-child"
}
        
Elapsed time: 0.19089s