113 lines
4.9 KiB
HTML
113 lines
4.9 KiB
HTML
{% extends "base.html" %}
|
|
{% load endless %}
|
|
{% load lang_utils %}
|
|
{% with request.user.wishlist.works.all as wishlist %}
|
|
|
|
{% block title %} Active Campaigns {% endblock %}
|
|
{% block extra_css %}
|
|
<link type="text/css" rel="stylesheet" href="/static/css/supporter_layout.css" />
|
|
<link type="text/css" rel="stylesheet" href="/static/css/book_list.css" />
|
|
<link type="text/css" rel="stylesheet" href="/static/css/book_panel.css" />
|
|
<link type="text/css" rel="stylesheet" href="/static/css/lists.css">
|
|
{% endblock %}
|
|
{% block extra_head %}
|
|
<script>
|
|
location.hash = "#2";
|
|
</script>
|
|
<script type="text/javascript" src="/static/js/jquery.cookie.js"></script>
|
|
<script type="text/javascript" src="/static/js/wishlist.js"></script>
|
|
<script type="text/javascript" src="{{ jquery_ui_home }}"></script>
|
|
<script type="text/javascript" src="/static/js/greenpanel.js"></script>
|
|
<script type="text/javascript" src="/static/js/toggle.js"></script>
|
|
{% endblock %}
|
|
{% block topsection %}
|
|
|
|
<div id="js-topsection">
|
|
<div class="js-main">
|
|
<div class="js-topnews">
|
|
<div class="js-topnews1">
|
|
<div class="js-topnews2">
|
|
<div class="js-topnews3">
|
|
<div class="user-block">
|
|
<div id="user-block1">
|
|
<div id="block-intro-text"><span class="special-user-name">{{ facet|capfirst }}</span></div>
|
|
</div>
|
|
<div class="user-block2">With your help we're raising money to buy the rights to give these {% if pub_lang %}{{pub_lang|ez_lang_name}} language {% endif %}books to the world.
|
|
</div>
|
|
<div class="user-block3">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="main-container">
|
|
<div class="js-main">
|
|
<div id="js-leftcol">
|
|
{% include "explore.html" %}
|
|
</div>
|
|
|
|
<div id="js-maincol-fr">
|
|
<div class="js-maincol-inner">
|
|
<div id="content-block">
|
|
<div class="content-block-heading ungluing" id="tabs">
|
|
<ul class="tabs">
|
|
<li class="tabs2 active"><a href="#">Active</a></li>
|
|
</ul>
|
|
|
|
<ul class="book-list-view">
|
|
<li>View As:</li>
|
|
<li class="view-list">
|
|
<a href="#" id="toggle-list">
|
|
<img src="/static/images/booklist/view-list.png" alt="view list" title="view list" height="21" width="24" />
|
|
</a>
|
|
</li>
|
|
<li class="view-list">
|
|
<a href="#" id="toggle-panel">
|
|
<img src="/static/images/booklist/view-icon.png" alt="view icon" title="view icon" height="22" width="22" />
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<div class="badges listspage">
|
|
<span class="rounded"><span class="orange" title="We're ungluing {{ campaign_list.count }} {% if campaign_list.count == 1 %}book{% else %}books{% endif %}."><span class="hovertext">We're ungluing </span>{{ campaign_list.count }}</span></span>
|
|
</div>
|
|
</div>
|
|
<div id="content-block-content">
|
|
{% ifequal campaign_list.count 0 %}
|
|
There aren't any {{pub_lang|ez_lang_name}} ungluing campaigns active yet. If you're a rights holder, you can <a href="/faq/rightsholders">start one</a>.
|
|
{% else %}
|
|
{% lazy_paginate 20 campaign_list using "campaign_list" %}
|
|
|
|
{% for campaign in campaign_list %}
|
|
<div class="{% cycle 'row1' 'row2' %}">
|
|
{% with campaign.status as status %}
|
|
{% with campaign.deadline as deadline %}
|
|
{% with campaign.work.googlebooks_id as googlebooks_id %}
|
|
{% with campaign.work as work %}
|
|
{% include "book_panel.html" %}
|
|
{% endwith %}{% endwith %}{% endwith %}{% endwith %}
|
|
</div>
|
|
{% endfor %}
|
|
<div class="pagination content-block-heading tabs-1">
|
|
{% get_pages %}
|
|
{% for page in pages %}
|
|
<a href="{{ page.path }}#1" class="endless_page_link">{{ page.number }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endifequal %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
{% endwith %}
|