Skip to content

Commit

Permalink
fix: [templates] Fixed routing issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricbonhomme committed Jun 4, 2024
1 parent 8148090 commit bb0d548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mosp/templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
<a class="dropdown-item" href="{{ url_for('user_bp.form') }}" title="Profile">{{ _('Profile') }}</a>
<a class="dropdown-item" href="{{ url_for('user_bp.schemas') }}" title="Schemas">{{ _('Schemas') }}</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="{{ url_for('user_bp.logout') }}" title="Sign out">{{ _('Sign out') }}</a>
<a class="dropdown-item" href="{{ url_for('logout') }}" title="Sign out">{{ _('Sign out') }}</a>
</div>
</li>
{% else %}
Expand Down

0 comments on commit bb0d548

Please sign in to comment.