# HG changeset patch # User Simon Descarpentries # Date 1336576413 -7200 # Node ID c5e91f2043711eafa28dcf8a4fbe8a471612c046 # Parent 5573b959131dbf0f81d74fc19aec6444a3da64b3 After investigations, commit the proposed patch by kklimonda presented with the following introduction : cm/templates/site/login_form.html template uses a relative url for the form action, which seems to break deployment in the subfolder when trailing slash is missing (the form redirects to the upper folder breaking login). Using {% url login %} (as in the attached patch) instead would fix the issue. diff -r 5573b959131d -r c5e91f204371 src/cm/templates/site/login_form.html --- a/src/cm/templates/site/login_form.html Wed May 09 09:36:49 2012 +0200 +++ b/src/cm/templates/site/login_form.html Wed May 09 17:13:33 2012 +0200 @@ -1,7 +1,7 @@ {% load i18n %}
-
+
{% blocktrans with CONF.workspace_name as wname %}{{ wname }} Login{% endblocktrans %} @@ -33,4 +33,4 @@ -
\ No newline at end of file +