mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-20 09:08:42 +02:00
N°2847 Fix twig missing templates (missing file or wrong case)
This commit is contained in:
@@ -10,7 +10,7 @@ namespace Combodo\iTop\Application\UI\Component\Input;
|
||||
|
||||
class InputWithLabel extends Input
|
||||
{
|
||||
public const HTML_TEMPLATE_REL_PATH = 'components/input/InputWithLabel';
|
||||
public const HTML_TEMPLATE_REL_PATH = 'components/input/inputwithlabel';
|
||||
|
||||
/** @var string */
|
||||
protected $sLabel;
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace Combodo\iTop\Application\UI\Component\Input;
|
||||
|
||||
class Select extends InputWithLabel
|
||||
{
|
||||
public const HTML_TEMPLATE_REL_PATH = 'components/input/Select';
|
||||
public const HTML_TEMPLATE_REL_PATH = 'components/input/select';
|
||||
|
||||
/** @var array */
|
||||
protected $aOptions;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{# @copyright Copyright (C) 2010-2020 Combodo SARL #}
|
||||
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
||||
{% extends "components/input/inputwithLabel.html.twig" %}
|
||||
{% extends "components/input/inputwithlabel.html.twig" %}
|
||||
{% block iboInput %}
|
||||
<select id="{{ oUIBlock.GetId() }}" name="{{ oUIBlock.GetName() }}">
|
||||
{% for oSubBlock in oUIBlock.GetSubBlocks() %}
|
||||
|
||||
Reference in New Issue
Block a user