diff --git a/templates/generic/base.html b/templates/generic/base.html index 38a23b12..da42bc93 100644 --- a/templates/generic/base.html +++ b/templates/generic/base.html @@ -16,7 +16,8 @@ {% endwith %}
-
{% if maintenance %} +
+ {% if maintenance %}
Wii Room is currently in maintenance mode.
diff --git a/theunderground/room_types.py b/theunderground/room_types.py index 41feba41..434b7493 100644 --- a/theunderground/room_types.py +++ b/theunderground/room_types.py @@ -49,7 +49,7 @@ def choose_type(room_id): if value == "Coupon": return redirect(url_for("root")) - if value == "Link": + if value == "Website Link": return redirect(url_for("link", room_id=room_id)) if value == "Picture": @@ -163,7 +163,7 @@ def poll(room_id): return render_template("room_add_vote.html", form=form) -@app.route("/theunderground/rooms//add//mov", methods=["GET", "POST"]) +@app.route("/theunderground/rooms//add/mov", methods=["GET", "POST"]) @oidc.require_login def movie(room_id): form = RoomMovieData()