Plugin for NEMO allowing facility managers to keep track of service contracts, procurement and contractors
python -m install nemo-contracts
in settings.py
add to INSTALLED_APPS
:
INSTALLED_APPS = [
'...',
'NEMO_contracts',
# 'NEMO.apps.contracts' Remove old dependency
'...'
]
To enabled reminder emails, set a cron job daily with one of the following options:
- send an authenticated http request to
<nemo_url>/email_contract_reminders/
- run command
django-admin send_email_contract_reminders
orpython manage.py send_email_contract_reminders
Example of systemd
service and timer files are provided for your convenience in the systemd folder.
Add a new landing page choice or use the Administration -> Contracts & procurements
link
To run the tests:
python runtests.py