regluit/frontend/templates/notification/library_borrow/notice.html

19 lines
1.1 KiB
HTML

{% extends "notification/notice_template.html" %}
{% block comments_book %}
<a href="{% url work acq.work.id %}"><img src="{{ acq.work.cover_image_small }}" alt="cover image for {{ acq.work.title }}" /></a>
{% endblock %}
{% block comments_graphical %}
You have borrowed {{ acq.work }} from {{ acq.lib_acq.user.username }}. During the borrowing period, you can download the ebook at <a href="{% url download acq.work.id %}">the book's download page.</a>
{% endblock %}
{% block comments_textual %}
<p>This ebook is made available to you by {{ acq.lib_acq.user.username }} for your personal use only, and a personal license has been embedded in the ebook file. You may download as many times as you need to until {{ acq.expires }}. If you want to use the ebook after that, please consider buying a copy for yourself. Doing so will bring closer the day when this ebook is free for everyone to read.</p>
<p>For more information about the book, visit the <a href="{% url work acq.work.id %}">book's unglue.it page</a>.
</p>
<p>{{ acq.lib_acq.user.username }} and the Unglue.it team
</p>
{% endblock %}