mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
681 B
HTML
23 lines
681 B
HTML
{% load utils_tags %}
|
|
|
|
|
|
{% if not user_profile.is_premium %}
|
|
<div class="NB-module NB-module-premium">
|
|
<h5 class="NB-module-header">
|
|
<div class="NB-module-header-text">Another reason to upgrade</div>
|
|
</h5>
|
|
|
|
<div class="NB-module-item NB-module-item-intro">
|
|
<div class="NB-module-premium-icon NB-{{ rand_int }}"></div>
|
|
<p class="NB-module-premium-reason">
|
|
{{ reason|safe }}
|
|
</p>
|
|
|
|
<div class="NB-modal-submit-green NB-modal-submit-button NB-module-premium-button NB-javascript">
|
|
Upgrade to premium
|
|
</div>
|
|
|
|
{% comment %} <p class="NB-module-premium-price">$36/year</p> {% endcomment %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|