├── .gitignore ├── README ├── grants ├── __init__.py ├── admin.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_question_required.py │ ├── 0003_auto_20140623_0719.py │ ├── 0004_auto_20140624_0435.py │ ├── 0005_auto_20140624_1719.py │ ├── 0006_auto_20140625_0139.py │ ├── 0007_auto_20140625_0314.py │ ├── 0008_program_users.py │ ├── 0009_uploadedcsv.py │ ├── 0010_auto_20150320_1734.py │ ├── 0011_auto_20160113_0505.py │ ├── 0012_auto_20160119_0428.py │ └── __init__.py ├── models.py ├── tests.py └── views │ ├── __init__.py │ ├── bulk_load.py │ └── program.py ├── grorg ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt ├── runtime.txt ├── static ├── css │ ├── reset.css │ ├── select2-spinner.gif │ ├── select2.css │ ├── select2.png │ ├── select2x2.png │ └── style.css ├── fonts │ └── alte_din │ │ ├── din1451alt_g-webfont.eot │ │ ├── din1451alt_g-webfont.svg │ │ ├── din1451alt_g-webfont.ttf │ │ ├── din1451alt_g-webfont.woff │ │ └── stylesheet.css └── js │ ├── jquery-1.9.1.min.js │ └── select2.js ├── templates ├── _field.html ├── _form.html ├── applicant-allocations.html ├── applicant-view.html ├── base.html ├── index.html ├── join.html ├── login.html ├── program-applicants.html ├── program-apply-success.html ├── program-apply.html ├── program-bulk-applicants.html ├── program-bulk-scores.html ├── program-home.html ├── program-question-edit.html ├── program-questions.html ├── program-resource-edit.html ├── program-resources.html └── register.html └── users ├── __init__.py ├── admin.py ├── forms.py ├── migrations ├── 0001_initial.py ├── 0002_auto_20150320_1734.py ├── 0003_auto_20160113_0505.py └── __init__.py ├── models.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite3 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/README -------------------------------------------------------------------------------- /grants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grants/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/admin.py -------------------------------------------------------------------------------- /grants/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/forms.py -------------------------------------------------------------------------------- /grants/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0001_initial.py -------------------------------------------------------------------------------- /grants/migrations/0002_question_required.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0002_question_required.py -------------------------------------------------------------------------------- /grants/migrations/0003_auto_20140623_0719.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0003_auto_20140623_0719.py -------------------------------------------------------------------------------- /grants/migrations/0004_auto_20140624_0435.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0004_auto_20140624_0435.py -------------------------------------------------------------------------------- /grants/migrations/0005_auto_20140624_1719.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0005_auto_20140624_1719.py -------------------------------------------------------------------------------- /grants/migrations/0006_auto_20140625_0139.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0006_auto_20140625_0139.py -------------------------------------------------------------------------------- /grants/migrations/0007_auto_20140625_0314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0007_auto_20140625_0314.py -------------------------------------------------------------------------------- /grants/migrations/0008_program_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0008_program_users.py -------------------------------------------------------------------------------- /grants/migrations/0009_uploadedcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0009_uploadedcsv.py -------------------------------------------------------------------------------- /grants/migrations/0010_auto_20150320_1734.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0010_auto_20150320_1734.py -------------------------------------------------------------------------------- /grants/migrations/0011_auto_20160113_0505.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0011_auto_20160113_0505.py -------------------------------------------------------------------------------- /grants/migrations/0012_auto_20160119_0428.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/migrations/0012_auto_20160119_0428.py -------------------------------------------------------------------------------- /grants/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grants/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/models.py -------------------------------------------------------------------------------- /grants/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/tests.py -------------------------------------------------------------------------------- /grants/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grants/views/bulk_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/views/bulk_load.py -------------------------------------------------------------------------------- /grants/views/program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grants/views/program.py -------------------------------------------------------------------------------- /grorg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /grorg/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grorg/settings.py -------------------------------------------------------------------------------- /grorg/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grorg/urls.py -------------------------------------------------------------------------------- /grorg/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/grorg/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django~=2.2.0 2 | whitenoise~=5.0.1 3 | urlman~=1.3 4 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.9 2 | -------------------------------------------------------------------------------- /static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/css/reset.css -------------------------------------------------------------------------------- /static/css/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/css/select2-spinner.gif -------------------------------------------------------------------------------- /static/css/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/css/select2.css -------------------------------------------------------------------------------- /static/css/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/css/select2.png -------------------------------------------------------------------------------- /static/css/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/css/select2x2.png -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/fonts/alte_din/din1451alt_g-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/fonts/alte_din/din1451alt_g-webfont.eot -------------------------------------------------------------------------------- /static/fonts/alte_din/din1451alt_g-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/fonts/alte_din/din1451alt_g-webfont.svg -------------------------------------------------------------------------------- /static/fonts/alte_din/din1451alt_g-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/fonts/alte_din/din1451alt_g-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/alte_din/din1451alt_g-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/fonts/alte_din/din1451alt_g-webfont.woff -------------------------------------------------------------------------------- /static/fonts/alte_din/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/fonts/alte_din/stylesheet.css -------------------------------------------------------------------------------- /static/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /static/js/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/static/js/select2.js -------------------------------------------------------------------------------- /templates/_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/_field.html -------------------------------------------------------------------------------- /templates/_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/_form.html -------------------------------------------------------------------------------- /templates/applicant-allocations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/applicant-allocations.html -------------------------------------------------------------------------------- /templates/applicant-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/applicant-view.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/join.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/join.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/program-applicants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-applicants.html -------------------------------------------------------------------------------- /templates/program-apply-success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-apply-success.html -------------------------------------------------------------------------------- /templates/program-apply.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-apply.html -------------------------------------------------------------------------------- /templates/program-bulk-applicants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-bulk-applicants.html -------------------------------------------------------------------------------- /templates/program-bulk-scores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-bulk-scores.html -------------------------------------------------------------------------------- /templates/program-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-home.html -------------------------------------------------------------------------------- /templates/program-question-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-question-edit.html -------------------------------------------------------------------------------- /templates/program-questions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-questions.html -------------------------------------------------------------------------------- /templates/program-resource-edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-resource-edit.html -------------------------------------------------------------------------------- /templates/program-resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/program-resources.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/templates/register.html -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/forms.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/0002_auto_20150320_1734.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/migrations/0002_auto_20150320_1734.py -------------------------------------------------------------------------------- /users/migrations/0003_auto_20160113_0505.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/migrations/0003_auto_20160113_0505.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/models.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewgodwin/grorg/HEAD/users/views.py --------------------------------------------------------------------------------