=============================
Nobinobi Observation
=============================
.. image:: https://badge.fury.io/py/nobinobi-observation.svg
:target: https://badge.fury.io/py/nobinobi-observation
.. image:: https://travis-ci.com/prolibre-ch/nobinobi-observation.svg?branch=master
:target: https://travis-ci.com/prolibre-ch/nobinobi-observation
.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-observation/branch/master/graph/badge.svg
:target: https://codecov.io/gh/prolibre-ch/nobinobi-observation
Application Observation for Nobinobi
Documentation
-------------
The full documentation is at https://nobinobi-observation.readthedocs.io.
Quickstart
----------
Install Nobinobi Observation::
pip install nobinobi-observation
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',
'nobinobi_observation.apps.NobinobiObservationConfig',
...
)
Add Nobinobi Observation'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
from nobinobi_observation import urls as nobinobi_observation_urls
urlpatterns = [
...
path('', include(nobinobi_core_urls)),
path('', include(nobinobi_staff_urls)),
path('', include(nobinobi_child_urls)),
path('', include(nobinobi_observation_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 (2023-05-25)
++++++++++++++++++
* 6b7fd8a - Fix error when no staff filled in observation detail display
0.1.3 (2021-12-14)
++++++++++++++++++
* 9f6c9d0 - fix error with new version of bootstrap datetimepicker
0.1.2 (2021-09-24)
++++++++++++++++++
* 261c8bc - Fix manifest for missing files
* 5ab12dd - Add French Translation
* ab02f90 - Fix classifier setup.py
0.1.1 (2021-09-24)
++++++++++++++++++
* 7b55ecd - Fix bumpversion
* 06a7a3e - Update Copyright
0.1.0 (2021-09-24)
++++++++++++++++++
* First release on PyPI.
Raw data
{
"_id": null,
"home_page": "https://github.com/prolibre-ch/nobinobi-observation",
"name": "nobinobi-observation",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "nobinobi-observation",
"author": "Florian Alu",
"author_email": "alu@prolibre.com",
"download_url": "https://files.pythonhosted.org/packages/97/b0/51968f82cd00e2a844524afeae8ce34032fdffbd063c55073a97bb1ed590/nobinobi-observation-0.1.4.tar.gz",
"platform": null,
"description": "=============================\nNobinobi Observation\n=============================\n\n.. image:: https://badge.fury.io/py/nobinobi-observation.svg\n :target: https://badge.fury.io/py/nobinobi-observation\n\n.. image:: https://travis-ci.com/prolibre-ch/nobinobi-observation.svg?branch=master\n :target: https://travis-ci.com/prolibre-ch/nobinobi-observation\n\n.. image:: https://codecov.io/gh/prolibre-ch/nobinobi-observation/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/prolibre-ch/nobinobi-observation\n\nApplication Observation for Nobinobi\n\nDocumentation\n-------------\n\nThe full documentation is at https://nobinobi-observation.readthedocs.io.\n\nQuickstart\n----------\n\nInstall Nobinobi Observation::\n\n pip install nobinobi-observation\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n ...\n 'phonenumber_field',\n 'crispy_forms',\n 'django_extensions',\n 'rest_framework',\n 'rest_framework.authtoken',\n 'rest_framework_datatables',\n 'menu',\n 'bootstrap_modal_forms',\n 'widget_tweaks',\n 'django_select2',\n 'bootstrap_datepicker_plus',\n 'nobinobi_core',\n 'nobinobi_staff',\n 'nobinobi_child.apps.NobinobiChildConfig',\n 'nobinobi_observation.apps.NobinobiObservationConfig',\n ...\n )\n\nAdd Nobinobi Observation's URL patterns:\n\n.. code-block:: python\n\n from nobinobi_core import urls as nobinobi_core_urls\n from nobinobi_staff import urls as nobinobi_staff_urls\n from nobinobi_child import urls as nobinobi_child_urls\n from nobinobi_observation import urls as nobinobi_observation_urls\n\n urlpatterns = [\n ...\n path('', include(nobinobi_core_urls)),\n path('', include(nobinobi_staff_urls)),\n path('', include(nobinobi_child_urls)),\n path('', include(nobinobi_observation_urls)),\n ...\n ]\n\nFeatures\n--------\n\n* TODO\n\nRunning Tests\n-------------\n\nDoes the code actually work?\n\n::\n\n source <YOURVIRTUALENV>/bin/activate\n (myenv) $ pip install tox\n (myenv) $ tox\n\n\nDevelopment commands\n---------------------\n\n::\n\n pip install -r requirements_dev.txt\n invoke -l\n\n\nCredits\n-------\n\nTools used in rendering this package:\n\n* Cookiecutter_\n* `cookiecutter-djangopackage`_\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage\n\n\n\n\nHistory\n-------\n\n0.1.4 (2023-05-25)\n++++++++++++++++++\n\n* 6b7fd8a - Fix error when no staff filled in observation detail display\n\n0.1.3 (2021-12-14)\n++++++++++++++++++\n\n* 9f6c9d0 - fix error with new version of bootstrap datetimepicker\n\n\n0.1.2 (2021-09-24)\n++++++++++++++++++\n\n* 261c8bc - Fix manifest for missing files\n* 5ab12dd - Add French Translation\n* ab02f90 - Fix classifier setup.py\n\n0.1.1 (2021-09-24)\n++++++++++++++++++\n\n* 7b55ecd - Fix bumpversion\n* 06a7a3e - Update Copyright\n\n0.1.0 (2021-09-24)\n++++++++++++++++++\n\n* First release on PyPI.\n\n\n",
"bugtrack_url": null,
"license": "",
"summary": "Application Observation for Nobinobi",
"version": "0.1.4",
"project_urls": {
"Homepage": "https://github.com/prolibre-ch/nobinobi-observation"
},
"split_keywords": [
"nobinobi-observation"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "2a5dc366e22f18e290bed21755b6772d9192d4b4e8aed376b9f60ff57e032e44",
"md5": "68e563ccc642b21e812171988844d9b6",
"sha256": "6895995054b343547e1df0d80fe7ba489023a38eb5eba0f41b7c2bd419ffae9c"
},
"downloads": -1,
"filename": "nobinobi_observation-0.1.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "68e563ccc642b21e812171988844d9b6",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 40853,
"upload_time": "2023-05-25T16:10:07",
"upload_time_iso_8601": "2023-05-25T16:10:07.560097Z",
"url": "https://files.pythonhosted.org/packages/2a/5d/c366e22f18e290bed21755b6772d9192d4b4e8aed376b9f60ff57e032e44/nobinobi_observation-0.1.4-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "97b051968f82cd00e2a844524afeae8ce34032fdffbd063c55073a97bb1ed590",
"md5": "291a581058139fc659914928bfa4b550",
"sha256": "8b37bf06ebd018fc10962b0d7cee83c096229aece8fd9083aa68921299c323c8"
},
"downloads": -1,
"filename": "nobinobi-observation-0.1.4.tar.gz",
"has_sig": false,
"md5_digest": "291a581058139fc659914928bfa4b550",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 31762,
"upload_time": "2023-05-25T16:10:10",
"upload_time_iso_8601": "2023-05-25T16:10:10.231862Z",
"url": "https://files.pythonhosted.org/packages/97/b0/51968f82cd00e2a844524afeae8ce34032fdffbd063c55073a97bb1ed590/nobinobi-observation-0.1.4.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-05-25 16:10:10",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "prolibre-ch",
"github_project": "nobinobi-observation",
"travis_ci": true,
"coveralls": true,
"github_actions": false,
"requirements": [],
"tox": true,
"lcname": "nobinobi-observation"
}