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
42185ed4
Commit
42185ed4
authored
Jan 16, 2015
by
Daniel W Bond
Browse files
added project file map
parent
7050f63b
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
42185ed4
...
...
@@ -67,10 +67,75 @@ Copy the secret.py.template and config.py.template to secret.py and config.py re
Next, run
`python manage.py migrate`
, then
`python manage.py runserver`
.
Have your virtualenvironment running and with the requirements.txt installed.
## Application Structure
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 #
To-do
---
Note-- this should also be on the wiki
The list of to-do items is kept track of on the gitlab roomlist issues page. https://git.gmu.edu/srct/roomlist
About GMU SRCT
---
...
...
roomlist/templates/login.html
deleted
100644 → 0
View file @
7050f63b
{% extends 'layouts/base.html' %} {% block title %} GMU RoomList
•
Login {% endblock %} {% block content %}
<link
href=
"/static/css/signin.css"
rel=
"stylesheet"
media=
"screen"
>
<div
class=
"page-header"
id=
"banner"
>
<div
class=
"row"
>
<div
class=
"col-lg-12 text-center"
>
<h1><strong>
GMU
</strong>
ROOMLIST
</h1>
<p
class=
"lead"
>
{{ building.name }}
</p>
</div>
</div>
</div>
{% if form.errors %}
<p>
Your username and password didn't match. Please try again.
</p>
{% endif %}
<form
class=
"form-signin"
role=
"form"
action=
"/accounts/login/"
method=
"post"
>
{% csrf_token %}
<h2
class=
"form-signin-heading"
>
Please sign in
</h2>
<label
for=
"username"
class=
"sr-only"
>
Username
</label>
{{form.username}}
<label
for=
"inputPassword"
class=
"sr-only"
>
Password
</label>
{{form.password}}
<div
class=
"checkbox"
>
<label>
<input
type=
"checkbox"
value=
"remember-me"
>
Remember me
</label>
</div>
<button
class=
"btn btn-lg btn-primary btn-block"
type=
"submit"
>
Sign in
</button>
<input
type=
"hidden"
name=
"next"
value=
"/"
/>
</form>
{% endblock %}
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