mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00

commit da18629d1652c304a75b684939255a1838989279 Author: slawkens <slawkens@gmail.com> Date: Mon Apr 1 21:53:53 2024 +0200 Fixes to tables headline commit 41c3d9ad21304e99330ea42841b5932af792db92 Author: slawkens <slawkens@gmail.com> Date: Sun Mar 31 13:59:25 2024 +0200 [WIP] Tables headline
33 lines
829 B
Twig
33 lines
829 B
Twig
{% set title = houseName %}
|
|
{% set content %}
|
|
|
|
{% if errors is not empty %}
|
|
{% for error in errors %}
|
|
<p class="error">{{ error }}</p>
|
|
{% endfor %}
|
|
{% else %}
|
|
<table border="0" cellpadding="4" cellspacing="1" width="100%">
|
|
<tr style="display: inline-flex;">
|
|
<td><img src="{{ imgPath }}"></td>
|
|
<td>
|
|
{{ bedsMessage }} and has a size of <b>{{ houseSize }} square meters</b>.
|
|
|
|
{% if rentType != 'never' %}
|
|
The {{ rentType }} is <b>{{ houseRent }} gold</b> and will be debited to the bank account on <b>{{ config.lua.serverName }}</b>.
|
|
{% endif %}
|
|
<br>
|
|
|
|
{% if owner is not empty %}
|
|
The house has been rented by <b>{{ owner|raw }}</b>.
|
|
{% else %}
|
|
No one has bought this house yet.
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endif %}
|
|
|
|
{% endset %}
|
|
{% include 'tables.headline.html.twig' %}
|
|
<br><br>
|