make ui more consistent

This commit is contained in:
Aaron Kimbre 2022-04-01 10:49:11 -05:00
parent 5ac384663b
commit f8d5928c86

View File

@ -117,6 +117,13 @@
href='{{url_for('properties.approve', id=property.id)}}'> href='{{url_for('properties.approve', id=property.id)}}'>
{% if property.mod_approved %} Unapprove {% else %} Approve {% endif %} {% if property.mod_approved %} Unapprove {% else %} Approve {% endif %}
</a> </a>
{% if not property.rejection_reason %}
<br/>
<a role="button" class="btn btn-danger btn-block"
href='{{url_for('properties.reject', id=property.id)}}'>
Reject
</a>
{% endif %}
{% endif %} {% endif %}
</div> </div>
</div> </div>