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
srct.gmu.io
Commits
0d8e1f61
Commit
0d8e1f61
authored
Jan 04, 2014
by
Daniel W Bond
Browse files
links to documents (noted brokenness re navbar on readme
parent
64cb8020
Changes
3
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
0d8e1f61
...
...
@@ -42,6 +42,7 @@ To-do
Note-- this should also be on the wiki
*
Links
*everywhere*
*
Consistent color scheming-- what on earth did Michel do to table formatting (and labels)
*
Links don't work on navbar coming back from documents
*
The meeting page needs to have forms for the secretary to take notes, and pagination
*
RSS feed for the meeting page
*
Set up the documents with actual files
...
...
srctweb/website/templates/documents.html
View file @
0d8e1f61
...
...
@@ -19,25 +19,25 @@ SRCT | Documents
</thead>
<tbody>
<tr>
<td>
Constitution
</td>
<td>
<a
href=
"documents/constitution"
>
Constitution
</
a></
td>
</tr>
<tr>
<td>
Usage Policy
</td>
<td>
<a
href=
"documents/usage_policy"
>
Usage Policy
</
a></
td>
</tr>
<tr>
<td>
Terms of Service
</td>
<td>
<a
href=
"documents/terms_of_service"
>
Terms of Service
</
a></
td>
</tr>
<tr>
<td>
Privacy Policy
</td>
<td>
<a
href=
"documents/privacy_policy"
>
Privacy Policy
</
a></
td>
</tr>
<tr>
<td>
Intellectual Property
</td>
<td>
<a
href=
"documents/intellectual_property"
>
Intellectual Property
</
a></
td>
</tr>
<tr>
<td>
Software Freedom
</td>
<td>
<a
href=
"documents/software_freedom"
>
Software Freedom
</
a></
td>
</tr>
<tr>
<td>
Logos
</td>
<td>
<a
href=
"documents/logos"
>
Logos
</
a></
td>
</tr>
</tbody>
</table>
...
...
srctweb/website/views.py
View file @
0d8e1f61
...
...
@@ -53,44 +53,44 @@ def projects():
### DOCUMENTS ###
@
website
.
route
(
'/constitution'
)
@
website
.
route
(
'/
documents/
constitution'
)
def
constitution
():
return
render_template
(
"documents/constitution.html"
,
)
@
website
.
route
(
'/intellectual_property'
)
@
website
.
route
(
'/
documents/
intellectual_property'
)
def
intellectualProperty
():
return
render_template
(
"documents/intellectual_property.html"
,
)
@
website
.
route
(
'/logos'
)
@
website
.
route
(
'/
documents/
logos'
)
def
logos
():
return
render_template
(
"documents/logos.html"
,
)
@
website
.
route
(
'/privacy_policy'
)
@
website
.
route
(
'/
documents/
privacy_policy'
)
def
privacyPolicy
():
return
render_template
(
"documents/privacy_policy.html"
,
)
@
website
.
route
(
'/software_freedom'
)
@
website
.
route
(
'/
documents/
software_freedom'
)
def
softwareFreedom
():
return
render_template
(
"documents/software_freedom.html"
,
)
@
website
.
route
(
'/terms_of_service'
)
@
website
.
route
(
'/
documents/
terms_of_service'
)
def
termsOfService
():
return
render_template
(
"documents/terms_of_service.html"
,
)
@
website
.
route
(
'/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