console/SWSCloudWeb/templates/default/_footer.html
2016-10-20 05:07:21 +03:00

30 lines
No EOL
1,020 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<footer>
<div class="row">
<div class="large-12 columns">
<ul>
<li>2009&minus;2016 &copy; GoCloud.ru</li>
<li><a href="{{ url_for('support.index') }}">{{ _('Форма обратной связи') }}</a></li>
{% if g.settings.get('SUPPORT_TEL', None) %}
<li>{{g.system_settings.get('SUPPORT_TEL')}}</li>
{% endif %}
{% if g.settings.get('SUPPORT_EMAIL', None) %}
<li>{{g.system_settings.get('SUPPORT_EMAIL')}}</li>
{% endif %}
</ul>
</div>
</div>
</footer>
{% if g.settings['footer_code'] %}
{{ g.settings['footer_code']|safe }}
{% endif %}
{% if session['user_id'] %}
<script>
$.getJSON( "/bills/account.json", function( data ) {
$('#account_bills').text(' (' + data.balance + 'руб.)');
if (data.balance <= 100) {
$('#account_bills').css('color', 'red');
}
});
</script>
{% endif %}