Merge pull request #6 from Gluejar/fix_zero_wisher_grammar

Fix zero wisher grammar
pull/1/head
eshellman 2012-09-18 10:41:09 -07:00
commit 499b1f78b2
1 changed files with 27 additions and 13 deletions

View File

@ -72,27 +72,41 @@ $j(document).ready(function(){
Campaign suspended. <br />See <a href="/faq">FAQ</a>.
{% else %}{% if status == 'WITHDRAWN' %}
Campaign withdrawn. <br />See <a href="/faq">FAQ</a>.
{% else %}{% if wishers == 0 %}
<span class="findtheungluers">No ungluers are wishing yet.</span>
<br />
Be the first!
{% else %}{% if wishers == 1 %}
<span class="findtheungluers">{{ wishers }} Ungluer is wishing</span>
{% else %}
<span class="findtheungluers">{{ wishers }} Ungluers are wishing</span>
{% endif %}
<br />
You can too!
{% endif %}{% endif %}{% endif %}{% endif %}
{% else %}
<span class="findtheungluers">{{ wishers }} Ungluers are wishing</span>
<br />
You can too!
{% endif %}{% endif %}{% endif %}{% endif %}{% endif %}{% endif %}
{% endif %}
{% else %}
{% if wishers == 0 %}
<span class="findtheungluers">
No ungluers are wishing yet.
</span>
<br />
Be the first!
{% else %}{% if wishers == 1 %}
<span class="findtheungluers">
{{ wishers }} Ungluer is wishing
</span>
<br />
You can too!
{% else %}
<span class="findtheungluers">
{% if wishers == 1 %}
{{ wishers }} Ungluer is wishing
{% else %}
{{ wishers }} Ungluers are wishing
{% endif %}
</span>
<br />
You can too!
{% endif %}{% endif %}
</span>
{% endif %}{% endif %}
</div>
</div>
{% include "explore.html" %}