-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the workshop steward pages locatable
- Loading branch information
Showing
4 changed files
with
88 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{% extends "base.html" %} | ||
{% block title %}Workshop Steward{% endblock %} | ||
{% block body %} | ||
|
||
<h1>Workshop Steward</h1> | ||
|
||
<h2>Workshops</h2> | ||
|
||
<ul> | ||
{% for venue in workshop_venues %} | ||
<li><a href="{{ url_for('.workshop_steward_venue', venue_id=venue.id) }}">{{ venue.name }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
|
||
<h2>Youth Workshops</h2> | ||
|
||
<ul> | ||
{% for venue in youthworkshop_venues %} | ||
<li><a href="{{ url_for('.workshop_steward_venue', venue_id=venue.id) }}">{{ venue.name }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{% extends "base.html" %} | ||
{% block title %}Workshop Steward -- {{ venue.name }}{% endblock %} | ||
{% block body %} | ||
|
||
<h1>Workshop Steward for {{ venue.name }}</h1> | ||
|
||
<ul> | ||
{% for workshop in all_workshops %} | ||
<li><a href="{{ url_for('.workshop_steward', workshop_id=workshop.id) }}">{{ workshop.scheduled_time }} -- {{ workshop.title }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters