diff --git a/portal/templates/portal/meetings/index.html b/portal/templates/portal/meetings/index.html index 66236a8..53879ea 100644 --- a/portal/templates/portal/meetings/index.html +++ b/portal/templates/portal/meetings/index.html @@ -20,6 +20,17 @@ color: black; cursor: default; } + + #refresh_box { + height: 5rem; + position: fixed; + top: auto; + left: auto; + } + + #refresh-counter { + width: 1rem; + }
@@ -160,6 +171,18 @@

Upcoming

+ + @@ -173,4 +196,31 @@

Upcoming

calendar.render(); }); -{% endblock %} + + +{% endblock %} \ No newline at end of file diff --git a/portal/views/auth.py b/portal/views/auth.py index e4b0f34..cd0cef0 100644 --- a/portal/views/auth.py +++ b/portal/views/auth.py @@ -121,7 +121,7 @@ def discord_flow_callback(request): ) return redirect(reverse("magiclink:login") + "?next=/auth/discord") - return redirect(reverse("profile")) + return redirect(reverse("dashboard")) def start_github_flow(request): @@ -170,7 +170,7 @@ def github_flow_callback(request): "No RCOS account found that matches your GitHub. Please sign in with email first and then link your GitHub account on your profile!", ) return redirect(reverse("magiclink:login") + "?next=/auth/github") - return redirect(reverse("profile")) + return redirect(reverse("dashboard")) @login_required