Merge pull request #11 from cervinko/master

show 'read in browser' only for epubs
This commit is contained in:
Jan B 2016-04-13 22:12:23 +02:00
commit b99c793aa2
1 changed files with 4 additions and 1 deletions

View File

@ -78,7 +78,10 @@
{% if g.user.kindle_mail %}
<a href="{{url_for('send_to_kindle', book_id=entry.id)}}" id="sendbtn" class="btn btn-primary" role="button"><span class="glyphicon glyphicon-send"></span> Send to Kindle</a>
{% endif %}
<a target="_blank" href="{{url_for('read_book', book_id=entry.id)}}" class="btn btn-primary" role="button"><span class="glyphicon glyphicon-eye-open"></span> Read in browser</a>
{% for format in entry.data if format.format|lower == 'epub' %}
<a target="_blank" href="{{url_for('read_book', book_id=entry.id)}}" class="btn btn-primary" role="button"><span class="glyphicon glyphicon-eye-open"></span> Read in browser</a>
{%endfor%}
</div>
</div>