diff --git a/goathacks/admin/__init__.py b/goathacks/admin/__init__.py
index 4536cf2..3d2eeba 100644
--- a/goathacks/admin/__init__.py
+++ b/goathacks/admin/__init__.py
@@ -65,6 +65,16 @@ def mail():
return render_template("mail.html", NUM_HACKERS=total_count)
+@bp.route("/users")
+@login_required
+def users():
+ if not current_user.is_admin:
+ return redirect(url_for("dashboard.home"))
+
+ users = User.query.all()
+
+ return render_template("users.html", users=users)
+
@bp.route("/send", methods=["POST"])
@login_required
def send():
diff --git a/goathacks/templates/admin.html b/goathacks/templates/admin.html
index bb83a9c..8891a57 100644
--- a/goathacks/templates/admin.html
+++ b/goathacks/templates/admin.html
@@ -1,280 +1 @@
-
-
-
-
- Hack @ WPI
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-