1
Fork 0
mirror of https://github.com/Quackster/Havana.git synced 2025-07-05 06:07:46 +00:00
Havana/tools/www-tpl/es/habblet/habboclubgift.tpl
2025-02-24 08:11:19 -03:00

67 lines
No EOL
2 KiB
Smarty

<div class="box-content">
<div id="hc-catalog">
{% if currentPage != 1 %}
<div class="hc-catalog-navi">
<a href="/credits/habboclub?month=0&catalogpage=0" onclick="return habboclub.catalogUpdate(1, 0)">&lt;&lt;</a>
</div>
{% else %}
<div class="hc-catalog-navi">
&lt;&lt;
</div>
{% endif %}
{% if currentPage != 1 %}
<div class="hc-catalog-navi">
<a href="/credits/habboclub?month=0&catalogpage=0" onclick="return habboclub.catalogUpdate({{ currentPage - 1}}, 0)">Anterior</a>
</div>
{% else %}
<div class="hc-catalog-navi">
Anterior
</div>
{% endif %}
{% for page in pages %}
{% if page == currentPage %}
<div class="hc-catalog-monthNumber">
<b>{{ currentPage }}</b>
</div>
{% else %}
<div class="hc-catalog-monthNumber">
<a href="/credits/habboclub?month={{ page }}&catalogpage=0" onclick="return habboclub.catalogUpdate({{ page }}, 0)">{{ page }}</a>
</div>
{% endif %}
{% endfor %}
{% if currentPage != lastPage %}
<div class="hc-catalog-monthNumber">
<a href="/credits/habboclub?month=0&catalogpage=0" onclick="return habboclub.catalogUpdate({{ currentPage + 1 }}, 0)">Próximo</a>
</div>
{% else %}
<div class="hc-catalog-monthNumber">
Próximo
</div>
{% endif %}
{% if currentPage == lastPage %}
&gt;&gt;
{% else %}
<div class="hc-catalog-monthNumber">
<a href="/credits/habboclub?month=0&catalogpage=0" onclick="return habboclub.catalogUpdate({{ lastPage }}, 0)">&gt;&gt;</a>
</div>
{% endif %}
</div>
<div id="hc-catalog-selectedGift">
<div id="hc-catalog-starGreen">
<div id="hc-catalog-giftNumber">
#{{ currentPage }}
</div>
</div>
<div id="hc-catalog-giftPicture">
<img src="{{ site.staticContentPath }}/web-gallery/images/hcgifts/{{ item.getSprite() }}.png" alt="{{ item.getName() }}"/>
</div>
</div>
<div id="hc-catalog-giftName">
<b>{{ item.getName() }}</b>
</div>
</div>