Skip to content

Commit

Permalink
Show Sign-Up button on sesion about for not-logged user - refs BT#102…
Browse files Browse the repository at this point in the history
…19 #TMI
  • Loading branch information
AngelFQC committed Sep 2, 2015
1 parent 9099d34 commit 863b7c4
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions main/template/default/session/about.tpl
Expand Up @@ -176,13 +176,19 @@
</div>
{% endfor %}

{% if _u.logged and not is_subscribed %}
<div class="row">
<div class="col-md-4 col-md-offset-4">
<div class="row">
<div class="col-md-4 col-md-offset-4">
{% if _u.logged and not is_subscribed %}
<div class="text-center">
{{ subscribe_button }}
</div>
</div>
{% elseif not _u.logged %}
{% if 'allow_registration'|get_setting == 'true' %}
<a href="{{ _p.web_main ~ 'auth/inscription.php' }}" class="btn btn-info btn-lg">
<i class="fa fa-sign-in fa-fw"></i> {{ 'SignUp'|get_lang }}
</a>
{% endif %}
{% endif %}
</div>
{% endif %}
</div>
</div>

0 comments on commit 863b7c4

Please sign in to comment.