Skip to content

Commit

Permalink
fix(accounts): nicer report UI
Browse files Browse the repository at this point in the history
This commit cleans up the report UI by removing icons and making the
checkoxes uniform with other modules that use checkboxes.
  • Loading branch information
Jonathan Niles authored and jniles committed Feb 28, 2017
1 parent d458d8e commit e66a65e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/partials/reports/modals/report_accounts.modal.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
</div>
</div>

<!-- Inclure Date interval -->
<!-- included Date interval -->
<div class="checkbox">
<label>
<input type="checkbox" ng-model="ReportConfigCtrl.dateInterval" ng-true-value="1" ng-false-value="0">
<strong translate> FORM.LABELS.INCLUDE_DATE_INTERVAL </strong>
<span translate>FORM.LABELS.INCLUDE_DATE_INTERVAL</span>
</label>
</div>

Expand All @@ -45,15 +45,15 @@
<div class="form-group"
ng-class="{ 'has-error' : ConfigForm.$submitted && ConfigForm.source.$invalid }">
<label class="control-label">
<i class="fa fa-briefcase"></i><span translate> FORM.SELECT.SOURCE </span>
<span translate> FORM.SELECT.SOURCE </span>
</label>
<select
class="form-control"
name="source"
ng-model="ReportConfigCtrl.source"
ng-options="source as (source.label | translate) for source in ReportConfigCtrl.reportSource track by source.id"
required>
<option value="" disabled translate> FORM.SELECT.SOURCE <option>
<option value="" disabled translate>FORM.SELECT.SOURCE<option>
</select>
<div class="help-block" ng-messages="ConfigForm.source.$error" ng-show="ConfigForm.$submitted">
<div ng-messages-include="partials/templates/messages.tmpl.html"></div>
Expand Down

0 comments on commit e66a65e

Please sign in to comment.