Unverified Commit 6985447f authored by Yuri Resende's avatar Yuri Resende Committed by GitHub
Browse files

Merge pull request #912 from yuriresendematias/master

Possibilitando a edição de notas com valores quebrados.
parents b5db175d 512ad6e7
......@@ -27,7 +27,7 @@
style="font-weight: bold">{{ __('Nota: ') }}</label>
</div>
<div class="col-sm-5 text-center padEsquerda">
<input class="form-control" name="nota" type="number"
<input class="form-control" name="nota" type="number" step="0.01"
style="width: 60px" @if(isset($aval)) value="{{$aval->nota}}" @endif>
</div>
......@@ -36,7 +36,7 @@
style="font-weight: bold">{{ __('Apresentação: ') }}</label>
</div>
<div class="col-sm-4 text-center padEsquerda">
<input class="form-control" name="nota_apresentacao" type="number"
<input class="form-control" name="nota_apresentacao" type="number" step="0.01"
style="width: 60px" @if(isset($aval)) value="{{$aval->nota_apresentacao}}" @endif>
</div>
</div>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment