diff --git a/src/Controller/PartController.php b/src/Controller/PartController.php index ccf2959f..3dab1dc3 100644 --- a/src/Controller/PartController.php +++ b/src/Controller/PartController.php @@ -113,7 +113,7 @@ class PartController extends AbstractController } return $this->render( - 'Parts/info/show_part_info.html.twig', + 'parts/info/show_part_info.html.twig', [ 'part' => $part, 'datatable' => $table, @@ -176,7 +176,7 @@ class PartController extends AbstractController $this->addFlash('error', 'part.edited_flash.invalid'); } - return $this->renderForm('Parts/edit/edit_part_info.html.twig', + return $this->renderForm('parts/edit/edit_part_info.html.twig', [ 'part' => $part, 'form' => $form, @@ -318,7 +318,7 @@ class PartController extends AbstractController $this->addFlash('error', 'part.created_flash.invalid'); } - return $this->renderForm('Parts/edit/new_part.html.twig', + return $this->renderForm('parts/edit/new_part.html.twig', [ 'part' => $new_part, 'form' => $form, diff --git a/src/Controller/PartListsController.php b/src/Controller/PartListsController.php index 2d2c4b3e..77e5bef2 100644 --- a/src/Controller/PartListsController.php +++ b/src/Controller/PartListsController.php @@ -163,7 +163,7 @@ class PartListsController extends AbstractController $this->denyAccessUnlessGranted('@categories.read'); return $this->showListWithFilter($request, - 'Parts/lists/category_list.html.twig', + 'parts/lists/category_list.html.twig', function (PartFilter $filter) use ($category) { $filter->getCategory()->setOperator('INCLUDING_CHILDREN')->setValue($category); }, function (FormInterface $filterForm) { @@ -185,7 +185,7 @@ class PartListsController extends AbstractController $this->denyAccessUnlessGranted('@footprints.read'); return $this->showListWithFilter($request, - 'Parts/lists/footprint_list.html.twig', + 'parts/lists/footprint_list.html.twig', function (PartFilter $filter) use ($footprint) { $filter->getFootprint()->setOperator('INCLUDING_CHILDREN')->setValue($footprint); }, function (FormInterface $filterForm) { @@ -207,7 +207,7 @@ class PartListsController extends AbstractController $this->denyAccessUnlessGranted('@manufacturers.read'); return $this->showListWithFilter($request, - 'Parts/lists/manufacturer_list.html.twig', + 'parts/lists/manufacturer_list.html.twig', function (PartFilter $filter) use ($manufacturer) { $filter->getManufacturer()->setOperator('INCLUDING_CHILDREN')->setValue($manufacturer); }, function (FormInterface $filterForm) { @@ -229,7 +229,7 @@ class PartListsController extends AbstractController $this->denyAccessUnlessGranted('@storelocations.read'); return $this->showListWithFilter($request, - 'Parts/lists/store_location_list.html.twig', + 'parts/lists/store_location_list.html.twig', function (PartFilter $filter) use ($storelocation) { $filter->getStorelocation()->setOperator('INCLUDING_CHILDREN')->setValue($storelocation); }, function (FormInterface $filterForm) { @@ -251,7 +251,7 @@ class PartListsController extends AbstractController $this->denyAccessUnlessGranted('@suppliers.read'); return $this->showListWithFilter($request, - 'Parts/lists/supplier_list.html.twig', + 'parts/lists/supplier_list.html.twig', function (PartFilter $filter) use ($supplier) { $filter->getSupplier()->setOperator('INCLUDING_CHILDREN')->setValue($supplier); }, function (FormInterface $filterForm) { @@ -273,7 +273,7 @@ class PartListsController extends AbstractController $tag = trim($tag); return $this->showListWithFilter($request, - 'Parts/lists/tags_list.html.twig', + 'parts/lists/tags_list.html.twig', function (PartFilter $filter) use ($tag) { $filter->getTags()->setOperator('ANY')->setValue($tag); }, function (FormInterface $filterForm) { @@ -314,7 +314,7 @@ class PartListsController extends AbstractController $searchFilter = $this->searchRequestToFilter($request); return $this->showListWithFilter($request, - 'Parts/lists/search_list.html.twig', + 'parts/lists/search_list.html.twig', null, null, [ @@ -334,6 +334,6 @@ class PartListsController extends AbstractController */ public function showAll(Request $request, DataTableFactory $dataTable) { - return $this->showListWithFilter($request,'Parts/lists/all_list.html.twig'); + return $this->showListWithFilter($request,'parts/lists/all_list.html.twig'); } } diff --git a/templates/AdminPages/_parameters.html.twig b/templates/AdminPages/_parameters.html.twig index f4d48395..d9a614a0 100644 --- a/templates/AdminPages/_parameters.html.twig +++ b/templates/AdminPages/_parameters.html.twig @@ -1,4 +1,4 @@ -{% form_theme form with ['Parts/edit/edit_form_styles.html.twig'] %} +{% form_theme form with ['parts/edit/edit_form_styles.html.twig'] %} {% import 'components/collection_type.macro.html.twig' as collection %} diff --git a/templates/components/attachments.macro.html.twig b/templates/components/attachments.macro.html.twig index 47c9e0bd..9c858dd9 100644 --- a/templates/components/attachments.macro.html.twig +++ b/templates/components/attachments.macro.html.twig @@ -1,6 +1,6 @@ {# Renders a editable list of all attachments. form is the Attachment CollectionType #} {% macro attachment_edit_list(form, part_mode = false) %} - {% form_theme form with ['Parts/edit/edit_form_styles.html.twig'] %} + {% form_theme form with ['parts/edit/edit_form_styles.html.twig'] %} {% import 'components/collection_type.macro.html.twig' as collection %}
diff --git a/templates/Parts/edit/_advanced.html.twig b/templates/parts/edit/_advanced.html.twig similarity index 100% rename from templates/Parts/edit/_advanced.html.twig rename to templates/parts/edit/_advanced.html.twig diff --git a/templates/Parts/edit/_attachments.html.twig b/templates/parts/edit/_attachments.html.twig similarity index 100% rename from templates/Parts/edit/_attachments.html.twig rename to templates/parts/edit/_attachments.html.twig diff --git a/templates/Parts/edit/_lots.html.twig b/templates/parts/edit/_lots.html.twig similarity index 91% rename from templates/Parts/edit/_lots.html.twig rename to templates/parts/edit/_lots.html.twig index c4e452a4..a286ca7f 100644 --- a/templates/Parts/edit/_lots.html.twig +++ b/templates/parts/edit/_lots.html.twig @@ -1,4 +1,4 @@ -{% form_theme form with ['Parts/edit/edit_form_styles.html.twig'] %} +{% form_theme form with ['parts/edit/edit_form_styles.html.twig'] %} {% import 'components/collection_type.macro.html.twig' as collection %}
diff --git a/templates/Parts/edit/_main.html.twig b/templates/parts/edit/_main.html.twig similarity index 100% rename from templates/Parts/edit/_main.html.twig rename to templates/parts/edit/_main.html.twig diff --git a/templates/Parts/edit/_manufacturer.html.twig b/templates/parts/edit/_manufacturer.html.twig similarity index 100% rename from templates/Parts/edit/_manufacturer.html.twig rename to templates/parts/edit/_manufacturer.html.twig diff --git a/templates/Parts/edit/_orderdetails.html.twig b/templates/parts/edit/_orderdetails.html.twig similarity index 92% rename from templates/Parts/edit/_orderdetails.html.twig rename to templates/parts/edit/_orderdetails.html.twig index 9a4d1175..95f0dfef 100644 --- a/templates/Parts/edit/_orderdetails.html.twig +++ b/templates/parts/edit/_orderdetails.html.twig @@ -1,5 +1,5 @@ {# Leave this template at bootstrap 4 for now, as it otherwise destroys our layout #} -{% form_theme form.orderdetails with ['Parts/edit/edit_form_styles.html.twig', "bootstrap_4_layout.html.twig"] %} +{% form_theme form.orderdetails with ['parts/edit/edit_form_styles.html.twig', "bootstrap_4_layout.html.twig"] %} {% import 'components/collection_type.macro.html.twig' as collection %}
diff --git a/templates/Parts/edit/_specifications.html.twig b/templates/parts/edit/_specifications.html.twig similarity index 95% rename from templates/Parts/edit/_specifications.html.twig rename to templates/parts/edit/_specifications.html.twig index a43be0d5..25b00133 100644 --- a/templates/Parts/edit/_specifications.html.twig +++ b/templates/parts/edit/_specifications.html.twig @@ -1,4 +1,4 @@ -{% form_theme form with ['Parts/edit/edit_form_styles.html.twig'] %} +{% form_theme form with ['parts/edit/edit_form_styles.html.twig'] %} {% import 'components/collection_type.macro.html.twig' as collection %} diff --git a/templates/Parts/edit/edit_form_styles.html.twig b/templates/parts/edit/edit_form_styles.html.twig similarity index 100% rename from templates/Parts/edit/edit_form_styles.html.twig rename to templates/parts/edit/edit_form_styles.html.twig diff --git a/templates/Parts/edit/edit_part_info.html.twig b/templates/parts/edit/edit_part_info.html.twig similarity index 91% rename from templates/Parts/edit/edit_part_info.html.twig rename to templates/parts/edit/edit_part_info.html.twig index 5ed0c105..44ec9e32 100644 --- a/templates/Parts/edit/edit_part_info.html.twig +++ b/templates/parts/edit/edit_part_info.html.twig @@ -70,25 +70,25 @@
- {% include "Parts/edit/_main.html.twig" %} + {% include "parts/edit/_main.html.twig" %}
- {% include "Parts/edit/_manufacturer.html.twig" %} + {% include "parts/edit/_manufacturer.html.twig" %}
- {% include "Parts/edit/_advanced.html.twig" %} + {% include "parts/edit/_advanced.html.twig" %}
- {% include "Parts/edit/_lots.html.twig" %} + {% include "parts/edit/_lots.html.twig" %}
- {% include "Parts/edit/_attachments.html.twig" %} + {% include "parts/edit/_attachments.html.twig" %}
- {% include "Parts/edit/_orderdetails.html.twig" %} + {% include "parts/edit/_orderdetails.html.twig" %}
- {% include "Parts/edit/_specifications.html.twig" %} + {% include "parts/edit/_specifications.html.twig" %}
{{ form_widget(form.comment)}} diff --git a/templates/Parts/edit/new_part.html.twig b/templates/parts/edit/new_part.html.twig similarity index 83% rename from templates/Parts/edit/new_part.html.twig rename to templates/parts/edit/new_part.html.twig index 7cd490af..278c57c3 100644 --- a/templates/Parts/edit/new_part.html.twig +++ b/templates/parts/edit/new_part.html.twig @@ -1,4 +1,4 @@ -{% extends "Parts/edit/edit_part_info.html.twig" %} +{% extends "parts/edit/edit_part_info.html.twig" %} {% block card_border %}border-success{% endblock %} {% block card_type %}bg-success text-white{% endblock %} diff --git a/templates/Parts/info/_attachments_info.html.twig b/templates/parts/info/_attachments_info.html.twig similarity index 100% rename from templates/Parts/info/_attachments_info.html.twig rename to templates/parts/info/_attachments_info.html.twig diff --git a/templates/Parts/info/_extended_infos.html.twig b/templates/parts/info/_extended_infos.html.twig similarity index 100% rename from templates/Parts/info/_extended_infos.html.twig rename to templates/parts/info/_extended_infos.html.twig diff --git a/templates/Parts/info/_history.html.twig b/templates/parts/info/_history.html.twig similarity index 100% rename from templates/Parts/info/_history.html.twig rename to templates/parts/info/_history.html.twig diff --git a/templates/Parts/info/_main_infos.html.twig b/templates/parts/info/_main_infos.html.twig similarity index 98% rename from templates/Parts/info/_main_infos.html.twig rename to templates/parts/info/_main_infos.html.twig index 158aa95b..fdbe3ab0 100644 --- a/templates/Parts/info/_main_infos.html.twig +++ b/templates/parts/info/_main_infos.html.twig @@ -2,7 +2,7 @@
- {% include "Parts/info/_picture.html.twig" %} + {% include "parts/info/_picture.html.twig" %}
diff --git a/templates/Parts/info/_order_infos.html.twig b/templates/parts/info/_order_infos.html.twig similarity index 100% rename from templates/Parts/info/_order_infos.html.twig rename to templates/parts/info/_order_infos.html.twig diff --git a/templates/Parts/info/_part_lots.html.twig b/templates/parts/info/_part_lots.html.twig similarity index 98% rename from templates/Parts/info/_part_lots.html.twig rename to templates/parts/info/_part_lots.html.twig index 02440889..08e5a660 100644 --- a/templates/Parts/info/_part_lots.html.twig +++ b/templates/parts/info/_part_lots.html.twig @@ -1,7 +1,7 @@ {% import "helper.twig" as helper %} {% import "LabelSystem/dropdown_macro.html.twig" as dropdown %} -{% include "Parts/info/_withdraw_modal.html.twig" %} +{% include "parts/info/_withdraw_modal.html.twig" %}
diff --git a/templates/Parts/info/_picture.html.twig b/templates/parts/info/_picture.html.twig similarity index 100% rename from templates/Parts/info/_picture.html.twig rename to templates/parts/info/_picture.html.twig diff --git a/templates/Parts/info/_projects.html.twig b/templates/parts/info/_projects.html.twig similarity index 100% rename from templates/Parts/info/_projects.html.twig rename to templates/parts/info/_projects.html.twig diff --git a/templates/Parts/info/_sidebar.html.twig b/templates/parts/info/_sidebar.html.twig similarity index 100% rename from templates/Parts/info/_sidebar.html.twig rename to templates/parts/info/_sidebar.html.twig diff --git a/templates/Parts/info/_specifications.html.twig b/templates/parts/info/_specifications.html.twig similarity index 100% rename from templates/Parts/info/_specifications.html.twig rename to templates/parts/info/_specifications.html.twig diff --git a/templates/Parts/info/_tools.html.twig b/templates/parts/info/_tools.html.twig similarity index 100% rename from templates/Parts/info/_tools.html.twig rename to templates/parts/info/_tools.html.twig diff --git a/templates/Parts/info/_withdraw_modal.html.twig b/templates/parts/info/_withdraw_modal.html.twig similarity index 100% rename from templates/Parts/info/_withdraw_modal.html.twig rename to templates/parts/info/_withdraw_modal.html.twig diff --git a/templates/Parts/info/show_part_info.html.twig b/templates/parts/info/show_part_info.html.twig similarity index 92% rename from templates/Parts/info/show_part_info.html.twig rename to templates/parts/info/show_part_info.html.twig index 9cdf867e..ece620fa 100644 --- a/templates/Parts/info/show_part_info.html.twig +++ b/templates/parts/info/show_part_info.html.twig @@ -31,11 +31,11 @@ {% block card_content %}
- {% include "Parts/info/_main_infos.html.twig" %} + {% include "parts/info/_main_infos.html.twig" %}
- {% include "Parts/info/_sidebar.html.twig" %} + {% include "parts/info/_sidebar.html.twig" %}
@@ -127,42 +127,42 @@ {% endif %}
- {% include "Parts/info/_part_lots.html.twig" %} + {% include "parts/info/_part_lots.html.twig" %}
{% if part.attachments is not empty %}
- {% include "Parts/info/_attachments_info.html.twig" %} + {% include "parts/info/_attachments_info.html.twig" %}
{% endif %} {% if part.orderdetails is not empty %}
- {% include "Parts/info/_order_infos.html.twig" %} + {% include "parts/info/_order_infos.html.twig" %}
{% endif %}
- {% include "Parts/info/_projects.html.twig" %} + {% include "parts/info/_projects.html.twig" %}
- {% include "Parts/info/_history.html.twig" %} + {% include "parts/info/_history.html.twig" %}
- {% include "Parts/info/_tools.html.twig" %} + {% include "parts/info/_tools.html.twig" %}
{% if part.parameters is not empty or description_params is not empty or comment_params is not empty %}
- {% include "Parts/info/_specifications.html.twig" %} + {% include "parts/info/_specifications.html.twig" %}
{% endif %}
- {% include "Parts/info/_extended_infos.html.twig" %} + {% include "parts/info/_extended_infos.html.twig" %}
diff --git a/templates/Parts/lists/_action_bar.html.twig b/templates/parts/lists/_action_bar.html.twig similarity index 100% rename from templates/Parts/lists/_action_bar.html.twig rename to templates/parts/lists/_action_bar.html.twig diff --git a/templates/Parts/lists/_filter.html.twig b/templates/parts/lists/_filter.html.twig similarity index 100% rename from templates/Parts/lists/_filter.html.twig rename to templates/parts/lists/_filter.html.twig diff --git a/templates/Parts/lists/_info_card.html.twig b/templates/parts/lists/_info_card.html.twig similarity index 98% rename from templates/Parts/lists/_info_card.html.twig rename to templates/parts/lists/_info_card.html.twig index dc5cc370..581ac5f0 100644 --- a/templates/Parts/lists/_info_card.html.twig +++ b/templates/parts/lists/_info_card.html.twig @@ -106,7 +106,7 @@ {% if entity.attachments is not empty %}
- {% include "Parts/info/_attachments_info.html.twig" with {"part": entity} %} + {% include "parts/info/_attachments_info.html.twig" with {"part": entity} %}
{% endif %} @@ -134,6 +134,6 @@ {% if filterForm is defined %} - {% include "Parts/lists/_filter.html.twig" %} + {% include "parts/lists/_filter.html.twig" %} {% endif %} \ No newline at end of file diff --git a/templates/Parts/lists/_parts_list.html.twig b/templates/parts/lists/_parts_list.html.twig similarity index 100% rename from templates/Parts/lists/_parts_list.html.twig rename to templates/parts/lists/_parts_list.html.twig diff --git a/templates/Parts/lists/all_list.html.twig b/templates/parts/lists/all_list.html.twig similarity index 82% rename from templates/Parts/lists/all_list.html.twig rename to templates/parts/lists/all_list.html.twig index 6c79a1d6..ab28824a 100644 --- a/templates/Parts/lists/all_list.html.twig +++ b/templates/parts/lists/all_list.html.twig @@ -21,10 +21,10 @@ - {% include "Parts/lists/_filter.html.twig" %} + {% include "parts/lists/_filter.html.twig" %} - {% include "Parts/lists/_action_bar.html.twig" with {'url_options': {}} %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_action_bar.html.twig" with {'url_options': {}} %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/Parts/lists/category_list.html.twig b/templates/parts/lists/category_list.html.twig similarity index 57% rename from templates/Parts/lists/category_list.html.twig rename to templates/parts/lists/category_list.html.twig index 676bba99..5d4c6c37 100644 --- a/templates/Parts/lists/category_list.html.twig +++ b/templates/parts/lists/category_list.html.twig @@ -6,10 +6,10 @@ {% block content %} - {% include "Parts/lists/_info_card.html.twig" with {'header_label': 'category.label'} %} + {% include "parts/lists/_info_card.html.twig" with {'header_label': 'category.label'} %} - {% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'category': entity.iD}} %} + {% include "parts/lists/_action_bar.html.twig" with {'url_options': {'category': entity.iD}} %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/Parts/lists/footprint_list.html.twig b/templates/parts/lists/footprint_list.html.twig similarity index 57% rename from templates/Parts/lists/footprint_list.html.twig rename to templates/parts/lists/footprint_list.html.twig index 403eff09..a64dc341 100644 --- a/templates/Parts/lists/footprint_list.html.twig +++ b/templates/parts/lists/footprint_list.html.twig @@ -6,10 +6,10 @@ {% block content %} - {% include "Parts/lists/_info_card.html.twig" with {'header_label': 'footprint.label'} %} + {% include "parts/lists/_info_card.html.twig" with {'header_label': 'footprint.label'} %} - {% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'footprint': entity.iD}} %} + {% include "parts/lists/_action_bar.html.twig" with {'url_options': {'footprint': entity.iD}} %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/Parts/lists/manufacturer_list.html.twig b/templates/parts/lists/manufacturer_list.html.twig similarity index 73% rename from templates/Parts/lists/manufacturer_list.html.twig rename to templates/parts/lists/manufacturer_list.html.twig index 337b3bfb..21cd12ca 100644 --- a/templates/Parts/lists/manufacturer_list.html.twig +++ b/templates/parts/lists/manufacturer_list.html.twig @@ -6,7 +6,7 @@ {% block content %} - {% embed "Parts/lists/_info_card.html.twig" with {'header_label': 'manufacturer.label'} %} + {% embed "parts/lists/_info_card.html.twig" with {'header_label': 'manufacturer.label'} %} {% block quick_links %}
{% import "components/quick_links.macro.html.twig" as quick_links %} @@ -15,8 +15,8 @@ {% endblock %} {% endembed %} - {% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'manufacturer': entity.iD}} %} + {% include "parts/lists/_action_bar.html.twig" with {'url_options': {'manufacturer': entity.iD}} %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/Parts/lists/search_list.html.twig b/templates/parts/lists/search_list.html.twig similarity index 97% rename from templates/Parts/lists/search_list.html.twig rename to templates/parts/lists/search_list.html.twig index cbc1fd4d..e4ac30ee 100644 --- a/templates/Parts/lists/search_list.html.twig +++ b/templates/parts/lists/search_list.html.twig @@ -74,9 +74,9 @@
- {% include "Parts/lists/_filter.html.twig" %} + {% include "parts/lists/_filter.html.twig" %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/Parts/lists/store_location_list.html.twig b/templates/parts/lists/store_location_list.html.twig similarity index 58% rename from templates/Parts/lists/store_location_list.html.twig rename to templates/parts/lists/store_location_list.html.twig index 52fb0cd8..0657c5d7 100644 --- a/templates/Parts/lists/store_location_list.html.twig +++ b/templates/parts/lists/store_location_list.html.twig @@ -6,10 +6,10 @@ {% block content %} - {% include "Parts/lists/_info_card.html.twig" with {'header_label': 'storelocation.label'} %} + {% include "parts/lists/_info_card.html.twig" with {'header_label': 'storelocation.label'} %} - {% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'storelocation': entity.iD}} %} + {% include "parts/lists/_action_bar.html.twig" with {'url_options': {'storelocation': entity.iD}} %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/Parts/lists/supplier_list.html.twig b/templates/parts/lists/supplier_list.html.twig similarity index 73% rename from templates/Parts/lists/supplier_list.html.twig rename to templates/parts/lists/supplier_list.html.twig index d49a8ab4..f5a5785e 100644 --- a/templates/Parts/lists/supplier_list.html.twig +++ b/templates/parts/lists/supplier_list.html.twig @@ -6,7 +6,7 @@ {% block content %} - {% embed "Parts/lists/_info_card.html.twig" with {'header_label': 'supplier.label'} %} + {% embed "parts/lists/_info_card.html.twig" with {'header_label': 'supplier.label'} %} {% block quick_links %}
{% import "components/quick_links.macro.html.twig" as quick_links %} @@ -15,8 +15,8 @@ {% endblock %} {% endembed %} - {% include "Parts/lists/_action_bar.html.twig" with {'url_options': {'supplier': entity.iD}} %} + {% include "parts/lists/_action_bar.html.twig" with {'url_options': {'supplier': entity.iD}} %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/Parts/lists/tags_list.html.twig b/templates/parts/lists/tags_list.html.twig similarity index 83% rename from templates/Parts/lists/tags_list.html.twig rename to templates/parts/lists/tags_list.html.twig index f7cdc65f..4627b6aa 100644 --- a/templates/Parts/lists/tags_list.html.twig +++ b/templates/parts/lists/tags_list.html.twig @@ -21,11 +21,11 @@
- {% include "Parts/lists/_filter.html.twig" %} + {% include "parts/lists/_filter.html.twig" %} - {% include "Parts/lists/_action_bar.html.twig" with {'url_options': {}} %} + {% include "parts/lists/_action_bar.html.twig" with {'url_options': {}} %} - {% include "Parts/lists/_parts_list.html.twig" %} + {% include "parts/lists/_parts_list.html.twig" %} {% endblock %} diff --git a/templates/projects/info/_info_card.html.twig b/templates/projects/info/_info_card.html.twig index 57494026..3e802b03 100644 --- a/templates/projects/info/_info_card.html.twig +++ b/templates/projects/info/_info_card.html.twig @@ -104,7 +104,7 @@ {% if project.attachments is not empty %}
- {% include "Parts/info/_attachments_info.html.twig" with {"part": project} %} + {% include "parts/info/_attachments_info.html.twig" with {"part": project} %}
{% endif %} diff --git a/templates/projects/info/info.html.twig b/templates/projects/info/info.html.twig index ae2ceef6..8f72eee8 100644 --- a/templates/projects/info/info.html.twig +++ b/templates/projects/info/info.html.twig @@ -92,7 +92,7 @@ {% include "projects/info/_builds.html.twig" %}
- {% include "Parts/info/_attachments_info.html.twig" with {"part": project} %} + {% include "parts/info/_attachments_info.html.twig" with {"part": project} %}
{% for name, parameters in project.groupedParameters %}