Show go-pro to all non-Pro users (logged in or not)

master
Nick Sergeant 2013-01-22 00:04:42 -05:00
parent 709bb062c2
commit c608beabbd
2 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@
</div>
{% endif %}
<section class="snipts" id="snipts">
{% if request.user.is_authenticated and not request.user.profile.is_pro %}
{% if not request.user.profile.is_pro %}
{% include 'go-pro.html' %}
{% endif %}
{% with 'true' as detail %}

View File

@ -13,7 +13,7 @@
{% block content %}
<section class="snipts" id="snipts">
{% if request.user.is_authenticated and not request.user.profile.is_pro %}
{% if not request.user.profile.is_pro %}
{% include 'go-pro.html' %}
{% endif %}
{% autopaginate snipts 10 %}