Skip to content

Instantly share code, notes, and snippets.

@cacheleocode
Last active August 29, 2015 14:11
Show Gist options
  • Select an option

  • Save cacheleocode/ff3607bc59cee35c70d2 to your computer and use it in GitHub Desktop.

Select an option

Save cacheleocode/ff3607bc59cee35c70d2 to your computer and use it in GitHub Desktop.
voting badge logic
{% if article.series %}
{% if article.is_current_series %}
{% likes article %}
{% if user.is_authenticated %}
{% if likes_enabled %}
{% if can_vote %} {# logged in and can vote #}
<div class="rating_badge">
<img src="{{ MEDIA_URL }}nima_star_icon.png" alt="" />
<a href="{% url like content_type content_obj.id 1 %}">{% blocktrans with content_obj.vote_total as stars %}{{ stars }} Stars{% endblocktrans %}</a>
</div>
{% else %} {# logged in and already voted #}
<div class="rating_badge">
<img src="{{ MEDIA_URL }}nima_star_icon.png" alt="" />
<span>{% blocktrans with content_obj.vote_total as stars %}{{ stars }} Stars{% endblocktrans %}</span>
</div>
{% endif %}
{% endif %} {# likes_enabled #}
{% else %} {# not logged in #}
{% if likes_enabled %}
<div class="rating_badge">
<img src="{{ MEDIA_URL }}nima_star_icon.png" alt="" />
<a href="#nima_stars">{% blocktrans with content_obj.vote_total as stars %}{{ stars }} Stars{% endblocktrans %}</a>
</div>
{% endif %} {# likes_enabled #}
{% endif %} {# user.is_authenticated #}
{% endif %}
{% endif %}
{% if article.series %}
{% if article.is_current_series %}
<div id="nima_stars">
{% if user.is_authenticated %}
{% if likes_enabled %}
{% if can_vote %} {# logged in and can vote #}
<div class="rating">
<img src="{{ MEDIA_URL }}nima_star_icon.png" alt="" />
<a href="{% url like content_type content_obj.id 1 %}">{% blocktrans with content_obj.vote_total as stars %}{{ stars }} Stars{% endblocktrans %}</a>
</div>
<h3>{% blocktrans %}Nima-kai Favorites{% endblocktrans %}</h3>
<p>
{% blocktrans %}
Do you like this story? Give it a star! The <a href="{{ chronicles_url }}"><em>Nikkei Names</em></a> stories with the most stars will be translated into our other site languages!
{% endblocktrans %}
</p>
{% else %} {# logged in and already voted #}
<div class="rating">
<img src="{{ MEDIA_URL }}nima_star_icon.png" alt="" />
<span>{% blocktrans with content_obj.vote_total as stars %}{{ stars }} Stars{% endblocktrans %}</span>
</div>
<h3>{% blocktrans %}Nima-kai Favorites{% endblocktrans %}</h3>
<p>
{% blocktrans %}
Thanks for giving this story a star! Please read and award stars to the other <a href="{{ chronicles_url }}"><em>Nikkei Names</em></a> stories. The stories with the most stars will be translated into our other site languages!
{% endblocktrans %}
</p>
{% endif %}
{% endif %} {# likes_enabled #}
{% else %} {# not logged in #}
{% if likes_enabled %}
<div class="rating">
<img src="{{ MEDIA_URL }}nima_star_icon.png" alt="" />
<span>{% blocktrans with content_obj.vote_total as stars %}{{ stars }} Stars{% endblocktrans %}</span>
</div>
<h3>{% blocktrans %}Nima-kai Favorites{% endblocktrans %}</h3>
<p>
{% blocktrans with login_url as login and register_url as register and request.path as next %}
Do you like this story? <a href="{{ login }}?next={{ next }}">Login</a> or <a href="{{ register }}?next={{ next }}">register</a> to give it a star! The <a href="{{ chronicles_url }}"><em>Nikkei Names</em></a> stories with the most stars will be translated into our other site languages! You have to be logged in to your Nima account to vote.
{% endblocktrans %}
</p>
{% endif %} {# likes_enabled #}
{% endif %} {# user.is_authenticated #}
</div>
{% endif %}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment