Skip to content
Snippets Groups Projects
Commit bd1007db authored by Martin Mareš's avatar Martin Mareš
Browse files

App: Secret sets of rooms :)

parent aa575774
Branches
No related tags found
No related merge requests found
......@@ -24,6 +24,9 @@
<select name=rooms>
<option value=i{{ " selected" if g.rooms=="i" else "" }}>CompSci rooms</option>
<option value=m{{ " selected" if g.rooms=="m" else "" }}>Math rooms</option>
{% if g.rooms not in ["i", "m"] %}
<option value={{g.rooms}} selected>Extra rooms</option>
{% endif %}
</select>
<input type=submit name=submit value="Submit">
</form>
......
......@@ -88,6 +88,10 @@ room_list = {
('ZM7', 'zoom-m-7@d3s.mff.cuni.cz'),
('ZM8', 'zoom-m-8@d3s.mff.cuni.cz'),
],
'krakorec': [
('MJ', 'mj@ucw.cz'),
('KAM', 'zoom@kam.mff.cuni.cz'),
],
}
@app.route('/')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment