We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d4927 commit ef631b3Copy full SHA for ef631b3
templates/App/Board/show.html.twig
@@ -6,7 +6,13 @@
6
7
{% block breadcrumb %}
8
<li><a href="{{ path('app_board_index') }}">{{ 'menu.boards'|trans }}</a></li>
9
- <li class="is-active"><a href="#" aria-current="page">{{ board.name }}</a></li>
+
10
+ {% if search is empty %}
11
+ <li class="is-active"><a href="#">{{ board.name }}</a></li>
12
+ {% else %}
13
+ <li><a href="{{ path('app_board_show', {slug: board.slug}) }}">{{ board.name }}</a></li>
14
+ <li class="is-active"><a href="#" aria-current="page">{{ search }}</a></li>
15
+ {% endif %}
16
{% endblock %}
17
18
{% block content %}
0 commit comments