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
Renfred Harper
srctweb
Commits
8ca86bba
Commit
8ca86bba
authored
Feb 20, 2014
by
Daniel W Bond
Browse files
fixed trailing slash problem
parent
67213064
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
8ca86bba
...
...
@@ -44,9 +44,9 @@ Note-- this should also be on the wiki
*
Set up the documents with ability to download pdfs and latex files
*
Figure out intellectual property with GMU
*
Write privacy policy
*
logo image download permalinks
*
Pages 404 with appended trailing slash
*
Logo image download permalinks
*
Squirrel 404 page!
*
Use real links, not the direct file locations (yes, I know that's going to be really annoying to fix-- sorry)
EVENTS AND MEETING NOTES
*
**note: events and meeting notes might be on the wiki page... undecided**
...
...
srctweb/website/views.py
View file @
8ca86bba
...
...
@@ -7,43 +7,43 @@ def index():
)
@
website
.
route
(
'/calendar'
)
@
website
.
route
(
'/calendar
/
'
)
def
calendar
():
return
render_template
(
"calendar.html"
,
)
@
website
.
route
(
'/contact'
)
@
website
.
route
(
'/contact
/
'
)
def
contact
():
return
render_template
(
"contact.html"
,
)
@
website
.
route
(
'/documents'
)
@
website
.
route
(
'/documents
/
'
)
def
documents
():
return
render_template
(
"documents.html"
,
)
@
website
.
route
(
'/events'
)
@
website
.
route
(
'/events
/
'
)
def
events
():
return
render_template
(
"events.html"
,
)
@
website
.
route
(
'/meetings'
)
@
website
.
route
(
'/meetings
/
'
)
def
meetings
():
return
render_template
(
"meetings.html"
,
)
@
website
.
route
(
'/people'
)
@
website
.
route
(
'/people
/
'
)
def
people
():
return
render_template
(
"people.html"
,
)
@
website
.
route
(
'/projects'
)
@
website
.
route
(
'/projects
/
'
)
def
projects
():
return
render_template
(
"projects.html"
,
...
...
@@ -51,44 +51,44 @@ def projects():
### DOCUMENTS ###
@
website
.
route
(
'/documents/constitution'
)
@
website
.
route
(
'/documents/constitution
/
'
)
def
constitution
():
return
render_template
(
"documents/constitution.html"
,
)
@
website
.
route
(
'/documents/intellectual_property'
)
@
website
.
route
(
'/documents/intellectual_property
/
'
)
def
intellectualProperty
():
return
render_template
(
"documents/intellectual_property.html"
,
)
@
website
.
route
(
'/documents/logos'
)
@
website
.
route
(
'/documents/logos
/
'
)
def
logos
():
return
render_template
(
"documents/logos.html"
,
)
@
website
.
route
(
'/documents/privacy_policy'
)
@
website
.
route
(
'/documents/privacy_policy
/
'
)
def
privacyPolicy
():
return
render_template
(
"documents/privacy_policy.html"
,
)
@
website
.
route
(
'/documents/software_freedom'
)
@
website
.
route
(
'/documents/software_freedom
/
'
)
def
softwareFreedom
():
return
render_template
(
"documents/software_freedom.html"
,
)
@
website
.
route
(
'/documents/terms_of_service'
)
@
website
.
route
(
'/documents/terms_of_service
/
'
)
def
termsOfService
():
return
render_template
(
"documents/terms_of_service.html"
,
)
@
website
.
route
(
'/documents/usage_policy'
)
@
website
.
route
(
'/documents/usage_policy
/
'
)
def
usagePolicy
():
return
render_template
(
"documents/usage_policy.html"
,
...
...
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