31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
{namespace n=Tx_News_ViewHelpers}
|
|
<f:layout name="General" />
|
|
<!--
|
|
=====================
|
|
Templates/News/SearchForm.html
|
|
-->
|
|
|
|
<f:section name="content">
|
|
<div class="news-search-form">
|
|
<f:form object="{search}" name="search" pageUid="{settings.listPid}">
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<label for="news-subject"><f:translate key="search-subject" /></label>
|
|
<f:form.textfield id="news-subject" property="subject" class="form-control"/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="news-minimumDate"><f:translate key="search-minimumDate" /></label>
|
|
<f:form.textfield id="news-minimumDate" property="minimumDate" type="date" class="form-control"/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="news-maximumDate"><f:translate key="search-maximumDate" /></label>
|
|
<f:form.textfield id="news-maximumDate" property="maximumDate" type="date" class="form-control"/>
|
|
</div>
|
|
|
|
<f:form.submit value="{f:translate(key:'search-start')}" class="btn btn-default"/>
|
|
</fieldset>
|
|
</f:form>
|
|
</div>
|
|
</f:section> |