regluit/frontend/templates/explore.html

48 lines
3.1 KiB
HTML
Raw Normal View History

{% load truncatechars %}
2011-09-27 09:45:03 +00:00
<div class="jsmodule">
<h3 class="jsmod-title"><span>Explore</span></h3>
<div class="jsmod-content">
2011-09-27 09:45:03 +00:00
<ul class="menu level1">
2011-09-27 09:45:03 +00:00
<li class="first parent">
<span>Show me...</span>
2011-09-27 09:45:03 +00:00
<ul class="menu level2">
{% if request.user.is_anonymous %}
2012-01-15 19:55:56 +00:00
<li class="first"><a href="{% url work_list 'recommended' %}"><span>Recommended</span></a></li>
{% else %}
<li class="first"><a href="/"><span>My Wishlist</span></a></li>
<li><a href="{% url work_list 'recommended' %}"><span>Recommended</span></a></li>
{% endif %}
{% if is_preview %}
2012-01-15 19:55:56 +00:00
<li><a href="{% url work_list 'popular' %}"><span>Popular</span></a></li>
2012-01-15 21:48:26 +00:00
<li><a href="{% url unglued_list 'recent' %}"><span>Recently unglued</span></a></li>
<li class="last"><a href="{% url work_list 'new' %}"><span>Newly Wished</span></a></li>
2012-01-15 19:55:56 +00:00
{% else %}
2011-12-01 14:41:08 +00:00
<li><a href="{% url work_list 'popular' %}"><span>Popular</span></a></li>
<li><a href="{% url campaign_list 'pledges' %}" class="comingsoon"><span>Most pledges</span></a></li>
<li><a href="{% url campaign_list 'pledged' %}" class="comingsoon"><span>Biggest campaigns</span></a></li>
<li><a href="{% url unglued_list 'recent' %}" class="comingsoon"><span>Recently unglued</span></a></li>
<li><a href="{% url campaign_list 'ending' %}" class="comingsoon"><span>Ending Soon</span></a></li>
<li class="last"><a href="{% url campaign_list 'newest' %}" class="comingsoon"><span>Just Listed</span></a></li>
2012-01-15 19:55:56 +00:00
{% endif %}
</ul>
</li>
<li class="parent">
<span>Ungluers</span>
2011-09-27 09:45:03 +00:00
<ul class="menu level2">
{% for ungluer in ungluers %}
<li class="first"><a href="{% url supporter supporter_username=ungluer %}">
{% if ungluer.profile.pic_url %}
<img src="{{ungluer.profile.pic_url}}" height="30" width="30" alt="{{ungluer}}" title="{{ungluer}}" /></a>
{% else %}
<img src="/static/images/header/avatar.png" height="30" width="30" alt="Generic Ungluer Avatar" /></a>
{% endif %}
<a href="{% url supporter supporter_username=ungluer %}"><span class="ungluer-name">{{ungluer|truncatechars:20}}</span>
</a></li>
{% endfor %}
</ul>
</li>
</ul>
</div>
</div>