Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
roomlist
Commits
505b65f3
Commit
505b65f3
authored
Jan 16, 2015
by
Daniel W Bond
Browse files
defined files in project map
parent
2d12a88f
Changes
1
Hide whitespace changes
Inline
Side-by-side
project-map
View file @
505b65f3
...
...
@@ -5,61 +5,25 @@ LICENSE # Roomlist is licensed under the GPLv3
README.md # instructions for development setup
requirements.txt # python packages required
roomlist/ # main project directory
├── accounts/ #
│ ├── adapter.py #
│ ├── admin.py #
│ ├── cas_callbacks.py #
│ ├── forms.py #
│ ├── __init__.py #
│ ├── migrations/ #
│ ├── models.py #
│ ├── templates/ #
│ │ ├── createStudent.html #
│ │ ├── detailStudent.html #
│ │ └── studentSettings.html #
│ ├── tests.py #
│ ├── urls.py #
│ └── views.py #
├── api/ #
│ ├── __init__.py #
│ ├── migrations/ #
│ ├── tests.py #
│ ├── urls.py #
│ └── views.py #
├── housing/ #
│ ├── admin.py #
│ ├── __init__.py #
│ ├── migrations/ #
│ ├── models.py #
│ ├── templates/ #
│ │ ├── detailBuilding.html #
│ │ └── listBuildings.html #
│ ├── tests.py #
│ ├── urls.py #
│ └── views.py #
├── manage.py #
├── settings/ #
│ ├── __init__.py #
│ ├── config.py.template #
│ ├── secret.py.template #
│ ├── settings.py #
│ ├── urls.py #
│ └── wsgi.py #
├── static/ #
│ ├── css/ #
│ ├── fonts/ #
│ ├── img/ #
│ ├── js/ #
│ └── media/ #
└── templates/ #
├── 404.html #
├── 500.html #
├── about.html #
├── admin/ #
│ └── base_site.html #
├── index.html #
├── layouts/ #
│ ├── base.html #
│ ├── footer.html #
│ └── navbar.html #
└── privacy.html #
├── accounts/ # app covering students, and later RA/RDs
│ ├── adapter.py # auth configuration for social media
│ ├── admin.py # register models with django admin interface
│ ├── cas_callbacks.py # create a student on first login through CAS
│ ├── models.py # app database models
│ ├── templates/ # app html templates
│ ├── tests.py # test cases for the app
│ ├── urls.py # url routing within app
│ └── views.py # app logic and page configuration
├── api/ # app for api configuration and
├── housing/ # app covering housing-related pages and models
│ └── forms.py # forms used in the app
├── manage.py # run server, open shell, migrate database, and more
├── settings/ # project settings
│ ├── config.py.template # deployment-specific configurations
│ ├── secret.py.template # template for secret settings-- databases, keys
│ ├── settings.py # project settings
│ └── urls.py # site-wide url routing
├── static/ # static file storage
└── templates/ # site-wide html templates
├── admin/ # templates customizing django admin interface
└── layouts/ # base template and common template components
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment