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
ba6cf292
Commit
ba6cf292
authored
Jan 04, 2014
by
Daniel W Bond
Browse files
calendar and events
parent
96ec2844
Changes
4
Hide whitespace changes
Inline
Side-by-side
srctweb/website/templates/calendar.html
View file @
ba6cf292
{% extends "layouts/base.html" %}
{% block title %}
SRCT | Calendar
SRCT | Calendar
{% endblock %}
{% block content %}
<h1>
Calendar!
</h1>
<div
class=
"page-header"
id=
"banner"
>
<div
class=
"row"
>
<div
class=
"col-lg-12 text-center"
>
<h1><strong>
Calendar
</strong></h1>
</div>
</div>
</div>
{% endblock %}
srctweb/website/templates/events.html
0 → 100644
View file @
ba6cf292
{% extends "layouts/base.html" %}
{% block title %}
SRCT | Events
{% endblock %}
{% block content %}
<div
class=
"page-header"
id=
"banner"
>
<div
class=
"row"
>
<div
class=
"col-lg-12 text-center"
>
<h1><strong>
Events
</strong></h1>
</div>
</div>
</div>
{% endblock %}
srctweb/website/templates/layouts/navbar.html
View file @
ba6cf292
...
...
@@ -7,6 +7,7 @@
<ul
class=
"nav navbar-nav"
>
<li><a
href=
"projects"
>
Projects
</a></li>
<li><a
href=
"people"
>
People
</a></li>
<li><a
href=
"events"
>
Events
</a></li>
<li><a
href=
"meetings"
>
Meetings
</a></li>
<li><a
href=
"calendar"
>
Calendar
</a>
<li><a
href=
"documents"
>
Documents
</a>
...
...
srctweb/website/views.py
View file @
ba6cf292
...
...
@@ -26,6 +26,13 @@ def documents():
)
@
website
.
route
(
'/events'
)
def
events
():
return
render_template
(
"events.html"
,
)
@
website
.
route
(
'/meetings'
)
def
meetings
():
return
render_template
(
"meetings.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