Added initial interface to user preferences for company and resourcesload filtering configuration

FEA: ItEr77S15FilteringEnhancements
This commit is contained in:
Lorenzo Tilve Álvaro 2013-01-28 09:57:21 +01:00
parent 1cab756069
commit 5e262b5144

View file

@ -117,6 +117,30 @@
</rows>
</grid>
</row>
<row>
<label
value="${i18n:_('Projects view filtering')}" />
<hbox>
<label value="${i18n:_('Label filter')}" />
<listbox id="projectsFilterLabel" width="200px" height="15px"/>
<label value="${i18n:_('Projects since')}" />
<intbox id="projectsFilterPeriodSince" value="@{settingsController.projectsFilterPeriodSince}" />
<label value="${i18n:_('months to')}" />
<intbox id="projectsFilterPeriodTo" value="@{settingsController.projectsFilterPeriodTo}" />
</hbox>
</row>
<row>
<label
value="${i18n:_('Resources load filtering')}" />
<hbox>
<label value="${i18n:_('Label filter')}" />
<listbox id="resourcesFilterLabel" width="200px" height="15px"/>
<label value="${i18n:_('Resources load since')}" />
<intbox id="resourcesLoadFilterPeriodSince" value="@{settingsController.resourcesLoadFilterPeriodSince}" />
<label value="${i18n:_('months to')}" />
<intbox id="resourcesLoadFilterPeriodTo" value="@{settingsController.resourcesLoadFilterPeriodTo}" />
</hbox>
</row>
</rows>
</grid>
</groupbox>