diff --git a/bookwyrm/settings.py b/bookwyrm/settings.py index c1335edf6..ad8cad75b 100644 --- a/bookwyrm/settings.py +++ b/bookwyrm/settings.py @@ -11,7 +11,7 @@ from django.utils.translation import gettext_lazy as _ env = Env() env.read_env() DOMAIN = env("DOMAIN") -VERSION = "0.4.2" +VERSION = "0.4.3" RELEASE_API = env( "RELEASE_API", diff --git a/bookwyrm/templates/user_menu.html b/bookwyrm/templates/user_menu.html index 3a3136551..2d23d1b24 100644 --- a/bookwyrm/templates/user_menu.html +++ b/bookwyrm/templates/user_menu.html @@ -68,9 +68,15 @@
  • - - {% trans 'Log out' %} - +
  • diff --git a/bookwyrm/views/landing/login.py b/bookwyrm/views/landing/login.py index ccee61297..7cac5ad88 100644 --- a/bookwyrm/views/landing/login.py +++ b/bookwyrm/views/landing/login.py @@ -77,7 +77,7 @@ class Login(View): class Logout(View): """log out""" - def get(self, request): + def post(self, request): """done with this place! outa here!""" logout(request) return redirect("/")