mirror of
https://github.com/frappe/erpnext.git
synced 2026-02-16 16:15:02 +00:00
fix: Remove trailing slashes "/" from route (#30531)
Trailing slashes "/" in the routes causes redirect to port 8080 in docker implementation with reverse proxy. The "student_admission_row.html" template has an href attribute with a trailing slash.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<div class="web-list-item transaction-list-item">
|
||||
{% set today = frappe.utils.getdate(frappe.utils.nowdate()) %}
|
||||
<a href = "{{ doc.route }}/" class="no-underline">
|
||||
<a href = "{{ doc.route }}" class="no-underline">
|
||||
<div class="row">
|
||||
<div class="col-sm-4 bold">
|
||||
<span class="indicator
|
||||
|
||||
Reference in New Issue
Block a user