Skip to content

Commit

Permalink
Merge pull request #255 from jmushtaq/master
Browse files Browse the repository at this point in the history
fixed ../ssologin url relogin issue
  • Loading branch information
jmushtaq authored May 31, 2024
2 parents 57da7c2 + 06ebb4b commit 5f5c590
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def commercialoperator_url(request):
'SYSTEM_NAME' : settings.SYSTEM_NAME,
'IS_OFFICER' : is_officer,
'IS_ADMIN' : is_admin,
'IS_CUSTOMER' : is_customer
'IS_CUSTOMER' : is_customer,
'BASE_URL' : settings.SITE_URL,
}


Expand Down
2 changes: 1 addition & 1 deletion wildlifecompliance/templates/wildlifecompliance/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h3>
</strong></p>
-->
{% bootstrap_messages %}
<a class="btn btn-primary" href="{{ request.get_full_path }}ssologin">Login</a>
<a class="btn btn-primary" href="{{ BASE_URL }}ssologin">Login</a>
<hr>
<h4>
Wildlife Licensing Password-less Logins
Expand Down

0 comments on commit 5f5c590

Please sign in to comment.