36 lines
2.1 KiB
HTML
36 lines
2.1 KiB
HTML
<div class="jsmodule">
|
|
<h3 class="jsmod-title"><span>Explore</span></h3>
|
|
<div class="jsmod-content">
|
|
<ul class="menu level1">
|
|
|
|
<li class="first parent">
|
|
<a href="#"><span>Show me...</span></a>
|
|
<ul class="menu level2">
|
|
<li class="first"><a href="{% url work_list 'recommended' %}"><span>Recommended</span></a></li>
|
|
<li><a href="{% url work_list 'popular' %}"><span>Popular</span></a></li>
|
|
<li><a href="{% url campaign_list 'pledges' %}"><span>Most pledges</span></a></li>
|
|
<li><a href="{% url campaign_list 'pledged' %}"><span>Biggest campaigns</span></a></li>
|
|
<li><a href="{% url unglued_list 'recent' %}"><span>Recently unglued</span></a></li>
|
|
<li><a href="{% url campaign_list 'ending' %}"><span>Ending Soon</span></a></li>
|
|
<li class="last"><a href="{% url campaign_list 'newest' %}"><span>Just Listed</span></a></li>
|
|
</ul>
|
|
</li>
|
|
<li class="parent">
|
|
<a href="#"><span>Ungluers</span></a>
|
|
<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}}" />
|
|
{% else %}
|
|
<img src="/static/images/header/avatar.png" height="30" width="30" alt="Generic Ungluer Avatar" />
|
|
{% endif %}
|
|
<span class="ungluer-name">{{ungluer}}</span>
|
|
</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|