Skip to content
Snippets Groups Projects
Commit fc70fa61 authored by Camille Simiand's avatar Camille Simiand
Browse files

Fix path remove pending editor with locale

parent 98c2702b
Branches
No related tags found
1 merge request!82tuleap-200-remove-pending-editor-page-not-found-because-of-missing-locale
Pipeline #983 passed
...@@ -63,7 +63,8 @@ ...@@ -63,7 +63,8 @@
{% for pending_editor in pending_editors %} {% for pending_editor in pending_editors %}
<li class="text-secondary list-unstyled p-1"> <li class="text-secondary list-unstyled p-1">
{{ pending_editor.getEmail() }} {{ pending_editor.getEmail() }}
<a href="/capsule/{{ capsule.getId() }}/pending_editor/{{ pending_editor.getId() }}/remove" class="remove-link"> <a href="{{ path('remove_pending_editor', {'_locale': current_user.getLocale(), 'capsule_id' : capsule.getId(), 'pending_editor_invitation_id': pending_editor.getId()}) }}"
class="remove-link">
{{ 'editors.remove.pending_editor.link'|trans }} {{ 'editors.remove.pending_editor.link'|trans }}
</a> </a>
</li> </li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment