OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/public/templates/work_packages/work_packages_options.html

49 lines
1.6 KiB

<div id="query_form_content" class="hide-when-print">
<query-filters></query-filters>
<!-- options angular, under construction -->
<fieldset id="options"
query-form id="column_options"
class="header_collapsible collapsible"
ng-class="{collapsed: !showQueryOptions }">
<legend title="{{ I18n.t('js.work_packages.description_option_toggle') }}", ng-click="showQueryOptions = !showQueryOptions"><a ng-href="">{{ I18n.t('js.work_packages.label_options') }}</a></legend>
<div ng-show="showQueryOptions">
<table style="">
<tbody>
<tr>
<td>{{ I18n.t('js.work_packages.query.column_names') }}</td>
<td>
<query-columns></query-columns>
</td>
</tr>
<tr>
<td><label for="group_by">{{ I18n.t('js.work_packages.query.group_by') }}</label></td>
<td>
<select id="group_by"
name="group_by"
ng-options="column.name as column.title for column in columns"
ng-model="groupBy">
</select>
</td>
</tr>
<tr>
<td><label for="display_sums">{{ I18n.t('js.work_packages.query.display_sums') }}</label></td>
<td>
<input id="display_sums"
name="display_sums"
type="checkbox"
value="1"
ng-model="query.display_sums"/>
</td>
</tr>
</tbody>
</table>
</div>
</fieldset>
</div>