Fix layout a bit

This commit is contained in:
Aaron Kimbre 2022-02-11 17:51:07 -06:00
parent 869bbdf7e6
commit f0df357258
2 changed files with 15 additions and 10 deletions

View File

@ -81,19 +81,24 @@
</div> </div>
{% else %} {% else %}
<br/> <br/>
<h5 class="text-center">Render Quality</h5>
<div class="row"> <div class="row">
<div class="col text-center"> <div class="col text-center">
<a role="button" class="btn btn-primary btn-block" <a role="button" class="btn btn-primary btn-block"
href='{{ url_for('properties.view_models', id=property.id, lod=0) }}'> href='{{ url_for('properties.view_models', id=property.id, lod=0) }}'>
Render: High High (0)
</a> </a>
</div>
<div class="col text-center">
<a role="button" class="btn btn-primary btn-block" <a role="button" class="btn btn-primary btn-block"
href='{{ url_for('properties.view_models', id=property.id, lod=1) }}'> href='{{ url_for('properties.view_models', id=property.id, lod=1) }}'>
Render: Medium Med (1)
</a> </a>
</div>
<div class="col text-center">
<a role="button" class="btn btn-primary btn-block" <a role="button" class="btn btn-primary btn-block"
href='{{ url_for('properties.view_models', id=property.id, lod=2) }}'> href='{{ url_for('properties.view_models', id=property.id, lod=2) }}'>
Render: Low Low (2)
</a> </a>
</div> </div>
</div> </div>

View File

@ -59,24 +59,24 @@
</div> </div>
</div> </div>
<br/> <br/>
<h5 class="text-center"> Render </h5> <h5 class="text-center">Render Quality</h5>
<div class="row"> <div class="row">
<div class="col text-center"> <div class="col text-center">
<a role="button" class="btn btn-primary" <a role="button" class="btn btn-primary btn-block"
href='{{ url_for('properties.view_model', id=item.id, lod=0) }}'> href='{{ url_for('properties.view_model', id=item.id, lod=0) }}'>
0 High (0)
</a> </a>
</div> </div>
<div class="col text-center"> <div class="col text-center">
<a role="button" class="btn btn-primary" <a role="button" class="btn btn-primary btn-block"
href='{{ url_for('properties.view_model', id=item.id, lod=1) }}'> href='{{ url_for('properties.view_model', id=item.id, lod=1) }}'>
1 Med (1)
</a> </a>
</div> </div>
<div class="col text-center"> <div class="col text-center">
<a role="button" class="btn btn-primary" <a role="button" class="btn btn-primary btn-block"
href='{{ url_for('properties.view_model', id=item.id, lod=2) }}'> href='{{ url_for('properties.view_model', id=item.id, lod=2) }}'>
2 Low (2)
</a> </a>
</div> </div>
</div> </div>