Skip to content
Snippets Groups Projects
Commit 5d6cb752 authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] Removing unnecessary code

parent d577f4cb
No related branches found
No related tags found
1 merge request!3New version 4 1
...@@ -68,53 +68,4 @@ ...@@ -68,53 +68,4 @@
</div> </div>
</div> </div>
</div> </div>
</f:form> </f:form>
\ No newline at end of file
<f:comment>
<div class="col-xs-4 row ">
<f:form action="index" controller="Queue" method="post" objectName="filters" object="{filters}">
<table class="table">
<tbody>
<tr>
<td>
<f:form.textfield class="form-control" property="from" id="filter-from" placeholder="{f:translate(key: 'backend.from')}" />
</td>
</tr>
<tr>
<td>
<f:form.textfield class="form-control" property="to" id="filter-to" placeholder="{f:translate(key: 'backend.to')}" />
</td>
</tr>
<tr>
<td>
<f:form.textfield class="form-control" property="subject" id="filter-subject" placeholder="{f:translate(key: 'backend.subject')}" />
</td>
</tr>
<tr>
<td>
<div class="radio">
<label class="radio-inline">
<f:form.radio property="sent" id="filters-all" value="0" checked="{f:if(condition: '{filters.sent} == \'0\'', then: '1')}" />
<f:translate key="backend.all" />
</label>
<label class="radio-inline">
<f:form.radio property="sent" id="filters-sent" value="1" checked="{f:if(condition: '{filters.sent} == \'1\'', then: '1')}" />
<f:translate key="backend.sent" />
</label>
<label class="radio-inline">
<f:form.radio property="sent" id="filters-notsent" value="2" checked="{f:if(condition: '{filters.sent} == \'2\'', then: '1')}" />
<f:translate key="backend.not_sent" />
</label>
</div>
</td>
</tr>
<tr>
<td>
<f:form.button class="btn btn-success form-group col-xs-12" type="submit">Filter</f:form.button>
</td>
</tr>
</tbody>
</table>
</f:form>
</div>
</f:comment>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment