20 lines
1.1 KiB
HTML
20 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.title }} 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 %} |