Skip to content

File Structure

Cameron Brill edited this page Apr 6, 2020 · 1 revision
.
├── Dockerfile
├── LICENSE
├── Ouroboros.iml
├── README.md
├── hiss
│   ├── application
│   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── apps.py
│   │   ├── emails.py
│   │   ├── fixtures
│   │   │   └── schools.json
│   │   ├── forms.py
│   │   ├── management
│   │   │   └── commands
│   │   │       ├── __init__.py
│   │   │       ├── expire.py
│   │   │       └── randomadmit.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   ├── 0002_auto_20200217_1226.py
│   │   │   ├── 0003_application_school_other.py
│   │   │   └── __init__.py
│   │   ├── models.py
│   │   ├── templatetags
│   │   │   └── rangefilter_compat.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── admin_tests
│   │   │   │   ├── __init__.py
│   │   │   │   └── application.py
│   │   │   ├── email_tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── confirmation.py
│   │   │   │   └── created.py
│   │   │   ├── form_tests
│   │   │   │   ├── __init__.py
│   │   │   │   └── application_form.py
│   │   │   ├── management_tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── expire.py
│   │   │   │   └── randomadmit.py
│   │   │   ├── model_tests
│   │   │   │   ├── __init__.py
│   │   │   │   ├── application.py
│   │   │   │   └── wave.py
│   │   │   └── view_tests
│   │   │       ├── __init__.py
│   │   │       ├── confirm.py
│   │   │       ├── create.py
│   │   │       ├── decline.py
│   │   │       └── update.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── customauth
│   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── apps.py
│   │   ├── forms.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   └── view_tests
│   │   │       ├── __init__.py
│   │   │       ├── resend.py
│   │   │       └── verify.py
│   │   ├── tokens.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── hiss
│   │   ├── __init__.py
│   │   ├── settings
│   │   │   ├── __init__.py
│   │   │   ├── base.py
│   │   │   ├── customization.py
│   │   │   ├── deployment.py
│   │   │   └── dev.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   ├── hiss.iml
│   ├── manage.py
│   ├── requirements.txt
│   ├── shared
│   │   ├── __init__.py
│   │   ├── admin_functions.py
│   │   ├── apps.py
│   │   ├── context_processors.py
│   │   ├── management
│   │   │   └── commands
│   │   │       ├── __init__.py
│   │   │       └── seeddb.py
│   │   ├── mixins.py
│   │   └── test_case.py
│   ├── static
│   │   ├── check_inbox.css
│   │   ├── main.js
│   │   ├── style.css
│   │   ├── th_bw.svg
│   │   └── tick.svg
│   ├── status
│   │   ├── __init__.py
│   │   ├── apps.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   └── view_tests
│   │   │       ├── __init__.py
│   │   │       └── status.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── team
│   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── apps.py
│   │   ├── forms.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   └── __init__.py
│   │   ├── models.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   └── view_tests
│   │   │       ├── __init__.py
│   │   │       ├── create.py
│   │   │       ├── detail.py
│   │   │       ├── join.py
│   │   │       └── leave.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── templates
│   │   ├── 400.html
│   │   ├── 403.html
│   │   ├── 404.html
│   │   ├── 500.html
│   │   ├── application
│   │   │   ├── application_form.html
│   │   │   └── emails
│   │   │       ├── approved.html
│   │   │       ├── confirmed.html
│   │   │       ├── created.html
│   │   │       └── rejected.html
│   │   ├── base.html
│   │   ├── dashboard_base.html
│   │   ├── rangefilter
│   │   │   └── date_filter.html
│   │   ├── registration
│   │   │   ├── check_inbox.html
│   │   │   ├── emails
│   │   │   │   ├── activate.html
│   │   │   │   ├── password_reset.html
│   │   │   │   └── password_reset_subject.txt
│   │   │   ├── login.html
│   │   │   ├── password_reset_complete.html
│   │   │   ├── password_reset_confirm.html
│   │   │   ├── password_reset_done.html
│   │   │   ├── password_reset_form.html
│   │   │   ├── resend_activation.html
│   │   │   └── signup.html
│   │   ├── status
│   │   │   └── status.html
│   │   └── team
│   │       ├── join_form.html
│   │       ├── team_detail.html
│   │       └── team_form.html
│   ├── user
│   │   ├── __init__.py
│   │   ├── admin.py
│   │   ├── apps.py
│   │   ├── forms.py
│   │   ├── migrations
│   │   │   ├── 0001_initial.py
│   │   │   └── __init__.py
│   │   ├── models.py
│   │   ├── tests
│   │   │   ├── __init__.py
│   │   │   ├── admin_tests
│   │   │   │   ├── __init__.py
│   │   │   │   └── user.py
│   │   │   └── model_tests
│   │   │       ├── __init__.py
│   │   │       ├── receivers.py
│   │   │       └── user.py
│   │   └── views.py
│   └── volunteer
│       ├── __init__.py
│       ├── admin.py
│       ├── apps.py
│       ├── models.py
│       ├── permissions.py
│       ├── serializers.py
│       ├── tests
│       │   ├── __init__.py
│       │   ├── models
│       │   │   └── __init__.py
│       │   ├── test_case.py
│       │   └── views
│       │       ├── __init__.py
│       │       ├── create_food_event.py
│       │       ├── create_workshop_event.py
│       │       ├── search.py
│       │       ├── user_checkin.py
│       │       ├── user_summary.py
│       │       └── volunteer_login.py
│       ├── urls.py
│       └── views.py
└── resources
    └── img
        └── TAMUhack.png
<\pre>