Skip to content

Commit

Permalink
TTK-27374: Add condition to show server tab (#689)
Browse files Browse the repository at this point in the history
* TTK-27374: Add condition to show server tab

* TTK-27414: Hide back button

---------

Co-authored-by: Pablo Ogando Ferreira <[email protected]>
  • Loading branch information
albacodina and Yurujai authored Dec 11, 2024
1 parent 5a45cad commit f802a38
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<a href="{{ path('pumukitnewadmin_mms_index', {'series': series.id}) }}" class="btn btn-default btn-raised">
<a href="{{ path('pumukitnewadmin_mms_index', {'series': series.id}) }}" class="btn btn-default btn-raised" style="visibility: {{ show_profiles ? 'visible' : 'hidden' }}">
&laquo; {{ "Back"|trans }}
</a>
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{ "Local"|trans }}
</a>
</li>
<li class="nav-item">
<li class="nav-item" style="display: {{ show_profiles ? 'block' : 'none' }}">
<a class="btn" href="#server" aria-controls="home" role="tab" data-toggle="tab" style="color: black !important;">
{{ "Server"|trans }}
</a>
Expand Down

0 comments on commit f802a38

Please sign in to comment.