Browse Source

DIV-256 - don't allow users to tab into reconciliation period date fields

pull/160/head
Mike Olund 8 years ago
parent
commit
c484701587
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      edivorce/apps/core/templates/partials/reconciliation_period.html

+ 2
- 2
edivorce/apps/core/templates/partials/reconciliation_period.html View File

@ -3,14 +3,14 @@
<div class="form-group">
<label>From:</label>
<span class="input-group date date-pickers-group">
{% input_field type="text" name="reconciliation_period" value=from multiple='true' class="date-pickers reconciliation-from-date form-control" placeholder="DD/MM/YYYY" %}
{% input_field type="text" name="reconciliation_period" value=from multiple='true' class="date-pickers reconciliation-from-date form-control" placeholder="DD/MM/YYYY" tabindex="-1" %}
</span>
</div>
&nbsp;&nbsp;
<div class="form-group">
<label>To: </label>
<span class="input-group date date-pickers-group">
{% input_field type="text" name="reconciliation_period" value=to multiple='true' class="date-pickers reconciliation-to-date form-control" placeholder="DD/MM/YYYY" %}
{% input_field type="text" name="reconciliation_period" value=to multiple='true' class="date-pickers reconciliation-to-date form-control" placeholder="DD/MM/YYYY" tabindex="-1" %}
</span>
</div>
<input type="button" class="btn btn-danger btn-delete-period form-control pull-right" tabindex="-1" value="Delete" />

Loading…
Cancel
Save