Skip to content

Commit

Permalink
misc: Move _sidebar_settings partial under settings/
Browse files Browse the repository at this point in the history
  • Loading branch information
marien-probesys committed Mar 27, 2023
1 parent 300c41d commit 1b3f266
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion templates/organizations/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% block title %}{{ 'organizations.index.title' | trans }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'organizations' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'organizations' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion templates/organizations/new.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% block title %}{{ 'organizations.new.title' | trans }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'organizations' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'organizations' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion templates/roles/edit.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{% block title %}{{ pageTitle }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'roles' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'roles' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion templates/roles/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% block title %}{{ 'roles.index.title' | trans }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'roles' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'roles' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion templates/roles/new.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{% block title %}{{ pageTitle }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'roles' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'roles' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion templates/users/authorizations/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% block title %}{{ 'users.authorizations.index.title' | trans({ name: user.displayName }) }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'users' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'users' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion templates/users/authorizations/new.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% block title %}{{ 'users.authorizations.new.title' | trans }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'users' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'users' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion templates/users/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% block title %}{{ 'users.index.title' | trans }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'users' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'users' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down
2 changes: 1 addition & 1 deletion templates/users/new.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
{% block title %}{{ 'users.new.title' | trans }}{% endblock %}

{% block sidebar %}
{{ include('_sidebar_settings.html.twig', { current: 'users' }, with_context = false) }}
{{ include('settings/_sidebar.html.twig', { current: 'users' }, with_context = false) }}
{% endblock %}

{% block body %}
Expand Down

0 comments on commit 1b3f266

Please sign in to comment.