Fixing and error causing duplicate roles to be created. (#339)

* Fixing and error causing duplicate roles to be created.

* Fixing python3

* Fixing python2 and python3
This commit is contained in:
kevgliss
2016-05-31 15:44:54 -07:00
parent be5dff8472
commit b2539b843b
5 changed files with 11 additions and 6 deletions

View File

@ -85,10 +85,10 @@
</label>
<div class="col-sm-2">
<select ng-model="authority.validityYears" class="form-control">
<option value="5">5 years</option>
<option value="10">10 years</option>
<option value="">-</option>
<option value="7">7 years</option>
<option value="14">14 years</option>
<option value="20">20 years</option>
<option value="30">30 years</option>
</select>
</div>
<span style="padding-top: 15px" class="text-center col-sm-1">

View File

@ -94,6 +94,7 @@
</label>
<div class="col-sm-2">
<select ng-model="certificate.validityYears" class="form-control">
<option value="">-</option>
<option value="1">1 year</option>
<option value="2">2 years</option>
<option value="3">3 years</option>