regluit/frontend/templates/kindle_change_successful.html

40 lines
1.3 KiB
HTML
Raw Normal View History

2013-05-31 19:19:58 +00:00
{% extends "email_change/base.html" %}
{% with request.user.profile.kindle_email as kindle_email %}
{% block title %}Kindle email change successful{% endblock %}
{% block extra_js %}
{{ block.super }}
<script>
var $j = jQuery.noConflict();
$j(document).ready(function() {
var work_id = {{ work.id }};
if(work_id) {
$j.post('/send_to_kindle/' + work_id + '/1/', function(data) {
$j('#replace_me').html(data);
return false;
});
}
});
</script>
{% endblock %}
2013-05-31 19:19:58 +00:00
{% block ce_content %}
<h2>Kindle email change successful</h2>
<div id="content-main">
<p>Hooray! We can now send most unglued ebooks to you at {{ request.user.profile.kindle_email }}. Some ebooks are too big for us to send, though.</p>
{% if work %}
<p>
We're now emailing you the ebook you wanted, <i><a href="{% url work work.id %}">{{ work.title }}</a></i>...
</p>
<span id="replace_me"><img src="{{ STATIC_URL }}images/loading.gif"></span>
{% else %}
<p>
Why not <a href="{% url unglued_list '' %}">start downloading free books</a>?
</p>
{% endif %}
2013-05-31 19:19:58 +00:00
</div>
{% endblock %}
{% endwith %}