2015-04-28 03:24:02 +00:00
{% extends 'email_change/base.html' %}
2016-05-11 14:41:50 +00:00
2013-05-31 19:19:58 +00:00
{% with request.user.profile.kindle_email as kindle_email %}
{% block title %}Kindle email change successful{% endblock %}
2013-06-24 17:53:28 +00:00
{% block extra_js %}
{{ block.super }}
< script >
var $j = jQuery.noConflict();
$j(document).ready(function() {
2013-09-06 02:54:11 +00:00
var work_id = {{ work.id }};
if(work_id) {
$j.post('/send_to_kindle/' + work_id + '/1/', function(data) {
2013-06-24 17:53:28 +00:00
$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" >
2015-03-05 22:35:55 +00:00
< p > {% if ok_email %}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.
2015-04-28 03:24:02 +00:00
{% else %}< span class = "yikes" > {{ request.user.profile.kindle_email }} is probably not the right email for your Kindle; most Kindles use an @kindle.com email address. You can < a href = "{% url 'kindle_config' %}" > change it< / a > , but we'll try sending it anyway.< / span > {% endif %}< / p >
2013-09-06 02:54:11 +00:00
{% if work %}
2013-06-24 17:53:28 +00:00
< p >
2015-04-28 03:24:02 +00:00
We're now emailing you the ebook you wanted, < i > < a href = "{% url 'work' work.id %}" > {{ work.title }}< / a > < / i > ...
2013-06-24 17:53:28 +00:00
< / p >
< span id = "replace_me" > < img src = "{{ STATIC_URL }}images/loading.gif" > < / span >
{% else %}
< p >
2015-04-28 03:24:02 +00:00
Why not < a href = "{% url 'unglued_list' '' %}" > start downloading free books< / a > ?
2013-06-24 17:53:28 +00:00
< / p >
{% endif %}
2013-05-31 19:19:58 +00:00
< / div >
{% endblock %}
{% endwith %}