Skip to content
Snippets Groups Projects

Observation

Merged Tor-Einar Skog requested to merge Observation into develop
1 file
+ 3
2
Compare changes
  • Side-by-side
  • Inline
@@ -63,8 +63,9 @@
@@ -63,8 +63,9 @@
<div class="form-inline">
<div class="form-inline">
<div class="form-group">
<div class="form-group">
<select class="form-control" name="statusTypeId">
<select class="form-control" name="statusTypeId">
<#list [-1,1,2,3] as statusTypeId>
<option value="-1" <#if 1 == selectedStatusTypeId>selected="selected"</#if>>${i18nBundle.allCategories}</option>
<option value="${statusTypeId}" <#if statusTypeId == selectedStatusTypeId>selected="selected"</#if>><#switch statusTypeId><#case -1>${i18nBundle.allCategories}<#break><#case 1>${i18nBundle.pending}<#break><#case 2>${i18nBundle.rejected}<#break><#case 3>${i18nBundle.approved}</#switch></option>
<#list [1,2,3] as statusTypeId>
 
<option value="${statusTypeId}" <#if statusTypeId == selectedStatusTypeId>selected="selected"</#if>><#switch statusTypeId><#case 1>${i18nBundle.pending}<#break><#case 2>${i18nBundle.rejected}<#break><#case 3>${i18nBundle.approved}</#switch></option>
</#list>
</#list>
</select>
</select>
</div>
</div>
Loading