Name | NEMO-user-details JSON |
Version |
1.10.1
JSON |
| download |
home_page | None |
Summary | User details plugin for NEMO |
upload_time | 2024-12-12 02:44:42 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License Copyright (c) 2023 Atlantis Labs LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
nemo
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO-user-details?label=python)](https://www.python.org/downloads/release/python-3110/)
[![PyPI](https://img.shields.io/pypi/v/nemo-user-details?label=pypi%20version)](https://pypi.org/project/NEMO-User-Details/)
# NEMO User Details
This plugin for NEMO adds extra fields to users.
The following fields can be enabled in `Customization -> User details`:
* employee id
* ORCID
* phone number
* emergency contact
* groups (from django authentication groups)
* gender
* race
* ethnicity
* education level
If `groups` are enabled, there will also be a new option in `email broadcast` to email based on the groups they belong to.
# Installation
`pip install NEMO-user-details`
`django-admin migrate NEMO_user_details`
# Add NEMO User Details
in `settings.py` add to `INSTALLED_APPS`:
```python
INSTALLED_APPS = [
'...',
'NEMO_user_details',
'...'
]
```
to track changes to details with auditlog, in `settings.py` add to `AUDITLOG_INCLUDE_TRACKING_MODELS`:
```python
AUDITLOG_INCLUDE_TRACKING_MODELS = (
'...',
"NEMO_user_details.UserDetails",
'...',
)
```
# Usage
Go to `Detailed administration` to add choices for each field if needed (groups, gender, ethnicity, race, education level).
Then go to `Customization -> User details` and select which fields you want to enable and require.
Then simply navigate to the `User` page in the `Administration` menu and the new fields will be available.
### NEMO Compatibility
NEMO >= 5.5.0 & NEMO-CE >= 2.4.0 ----> NEMO-user-details >= 1.9.0
NEMO >= 4.7.0 & NEMO-CE >= 1.7.0 ----> NEMO-user-details >= 1.7.0
NEMO >= 4.5.0 & NEMO-CE >= 1.2.0 ----> NEMO-user-details >= 1.6.0
Raw data
{
"_id": null,
"home_page": null,
"name": "NEMO-user-details",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "NEMO",
"author": null,
"author_email": "Atlantis Labs LLC <atlantis@atlantislabs.io>",
"download_url": null,
"platform": null,
"description": "[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/NEMO-user-details?label=python)](https://www.python.org/downloads/release/python-3110/)\n[![PyPI](https://img.shields.io/pypi/v/nemo-user-details?label=pypi%20version)](https://pypi.org/project/NEMO-User-Details/)\n\n# NEMO User Details\n\nThis plugin for NEMO adds extra fields to users.\n\nThe following fields can be enabled in `Customization -> User details`:\n* employee id\n* ORCID\n* phone number\n* emergency contact\n* groups (from django authentication groups)\n* gender\n* race\n* ethnicity\n* education level\n\nIf `groups` are enabled, there will also be a new option in `email broadcast` to email based on the groups they belong to.\n\n# Installation\n\n`pip install NEMO-user-details`\n\n`django-admin migrate NEMO_user_details`\n\n# Add NEMO User Details\n\nin `settings.py` add to `INSTALLED_APPS`:\n\n```python\nINSTALLED_APPS = [\n '...',\n 'NEMO_user_details',\n '...'\n]\n```\n\nto track changes to details with auditlog, in `settings.py` add to `AUDITLOG_INCLUDE_TRACKING_MODELS`:\n```python\nAUDITLOG_INCLUDE_TRACKING_MODELS = (\n '...',\n \"NEMO_user_details.UserDetails\",\n '...',\n)\n```\n\n# Usage\nGo to `Detailed administration` to add choices for each field if needed (groups, gender, ethnicity, race, education level).\n\nThen go to `Customization -> User details` and select which fields you want to enable and require.\n\nThen simply navigate to the `User` page in the `Administration` menu and the new fields will be available.\n\n### NEMO Compatibility\n\nNEMO >= 5.5.0 & NEMO-CE >= 2.4.0 ----> NEMO-user-details >= 1.9.0\n\nNEMO >= 4.7.0 & NEMO-CE >= 1.7.0 ----> NEMO-user-details >= 1.7.0\n\nNEMO >= 4.5.0 & NEMO-CE >= 1.2.0 ----> NEMO-user-details >= 1.6.0\n",
"bugtrack_url": null,
"license": "MIT License Copyright (c) 2023 Atlantis Labs LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "User details plugin for NEMO",
"version": "1.10.1",
"project_urls": {
"CI": "https://gitlab.com/nemo-community/atlantis-labs/nemo-user-details/-/pipelines",
"Changelog": "https://gitlab.com/nemo-community/atlantis-labs/nemo-user-details/-/releases",
"Homepage": "https://gitlab.com/nemo-community/atlantis-labs/nemo-user-details",
"Issues": "https://gitlab.com/nemo-community/atlantis-labs/nemo-user-details/-/issues"
},
"split_keywords": [
"nemo"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4e12e3854b26c8b9b812980d6caee8cbd5fe67262126cc18b7aaeaf2cfa0ff1b",
"md5": "0dbbfcc7044f32d7f18d06956244f2e5",
"sha256": "3070f3b64079adfda7e6372568336cbfe4f720c357a24b52644aa04a2180296a"
},
"downloads": -1,
"filename": "NEMO_user_details-1.10.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0dbbfcc7044f32d7f18d06956244f2e5",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 23615,
"upload_time": "2024-12-12T02:44:42",
"upload_time_iso_8601": "2024-12-12T02:44:42.598062Z",
"url": "https://files.pythonhosted.org/packages/4e/12/e3854b26c8b9b812980d6caee8cbd5fe67262126cc18b7aaeaf2cfa0ff1b/NEMO_user_details-1.10.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-12 02:44:42",
"github": false,
"gitlab": true,
"bitbucket": false,
"codeberg": false,
"gitlab_user": "nemo-community",
"gitlab_project": "atlantis-labs",
"lcname": "nemo-user-details"
}