From 6958e346a1748ffd92a5ae002ec6651e23ae9095 Mon Sep 17 00:00:00 2001 From: fredkingham Date: Tue, 25 Oct 2016 16:22:30 +0100 Subject: [PATCH] adding a manifest file --- MANIFEST.in | 2 ++ README.md | 8 ++++++++ setup.py | 6 +++--- 3 files changed, 13 insertions(+), 3 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..d77901f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +recursive-include pathway/static * +recursive-include pathway/templates * diff --git a/README.md b/README.md index 2c95ab5..1530635 100644 --- a/README.md +++ b/README.md @@ -137,6 +137,14 @@ Alternatively you may want to create your own multisave step forms, you can use ``` +### Opening a pathway for a particular patient/episode + +If you want to open a pathway for a particular episode you can by going adding the patient id and the episode id to the end of the url. For example `http:\\localhost:8000\pathway\#\simples\[[ patient_id ]]\[[ episode_id ]]`. + + + +### Adding custom javascript logic + ### Success redirects Often, after successfully saving a pathway, we want to redirect the user to a different diff --git a/setup.py b/setup.py index f6e62f9..44b717d 100644 --- a/setup.py +++ b/setup.py @@ -8,13 +8,13 @@ setup( name='opal-pathway', - version='0.1', + version='0.2', packages=['pathway'], include_package_data=True, - license='LICENSE', + license='LICENSE', description='The pathway OPAL Plugin', long_description=README, url='http://opal.openhealthcare.org.uk/', author='', author_email='', -) \ No newline at end of file +)