Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douban-api-proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
douban-api-proxy
Commits
c1ac68e2
Commit
c1ac68e2
authored
Sep 25, 2021
by
Ozzie Isaacs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix #2053 (Hovering on cover, now shows tooltip also in Caliblur! Theme)
parent
623a92eb
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
16 deletions
+16
-16
author.html
cps/templates/author.html
+2
-2
discover.html
cps/templates/discover.html
+2
-2
grid.html
cps/templates/grid.html
+2
-2
index.html
cps/templates/index.html
+4
-4
search.html
cps/templates/search.html
+2
-2
shelf.html
cps/templates/shelf.html
+2
-2
shelf_order.html
cps/templates/shelf_order.html
+2
-2
No files found.
cps/templates/author.html
View file @
c1ac68e2
...
...
@@ -36,8 +36,8 @@
<div
id=
"books"
class=
"col-sm-3 col-lg-2 col-xs-6 book"
>
<div
class=
"cover"
>
<a
href=
"{{ url_for('web.show_book', book_id=entry.id) }}"
>
<span
class=
"img"
>
<img
title=
"{{author.name|safe}}"
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
/>
<span
class=
"img"
title=
"{{entry.title|safe}}"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
/>
{% if entry.id in read_book_ids %}
<span
class=
"badge read glyphicon glyphicon-ok"
></span>
{% endif %}
</span>
</a>
...
...
cps/templates/discover.html
View file @
c1ac68e2
...
...
@@ -8,8 +8,8 @@
<div
class=
"cover"
>
{% if entry.has_cover is defined %}
<a
href=
"{{ url_for('web.show_book', book_id=entry.id) }}"
data-toggle=
"modal"
data-target=
"#bookDetailsModal"
data-remote=
"false"
>
<span
class=
"img"
>
<img
title=
"{{entry.title}}"
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
<span
class=
"img"
title=
"{{entry.title}}"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
{% if entry.id in read_book_ids %}
<span
class=
"badge read glyphicon glyphicon-ok"
></span>
{% endif %}
</span>
</a>
...
...
cps/templates/grid.html
View file @
c1ac68e2
...
...
@@ -27,8 +27,8 @@
<div
class=
"col-sm-3 col-lg-2 col-xs-6 book sortable"
{%
if
entry
[
0
].
sort
%}
data-name=
"{{entry[0].series[0].name}}"
{%
endif
%}
data-id=
"{% if entry[0].series[0].name %}{{entry[0].series[0].name}}{% endif %}"
>
<div
class=
"cover"
>
<a
href=
"{{url_for('web.books_list', data=data, sort_param='stored', book_id=entry[0].series[0].id )}}"
>
<span
class=
"img"
>
<img
title=
"{{entry.title}}"
src=
"{{ url_for('web.get_cover', book_id=entry[0].id) }}"
alt=
"{{ entry[0].name }}"
/>
<span
class=
"img"
title=
"{{entry[0].series[0].name}}"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry[0].id) }}"
alt=
"{{ entry[0].name }}"
/>
<span
class=
"badge"
>
{{entry.count}}
</span>
</span>
</a>
...
...
cps/templates/index.html
View file @
c1ac68e2
...
...
@@ -8,8 +8,8 @@
<div
class=
"col-sm-3 col-lg-2 col-xs-6 book"
id=
"books_rand"
>
<div
class=
"cover"
>
<a
href=
"{{ url_for('web.show_book', book_id=entry.id) }}"
data-toggle=
"modal"
data-target=
"#bookDetailsModal"
data-remote=
"false"
>
<span
class=
"img"
>
<img
title=
"{{ entry.title }}"
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
<span
class=
"img"
title=
"{{ entry.title }}"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
{% if entry.id in read_book_ids %}
<span
class=
"badge read glyphicon glyphicon-ok"
></span>
{% endif %}
</span>
</a>
...
...
@@ -85,8 +85,8 @@
<div
class=
"col-sm-3 col-lg-2 col-xs-6 book"
id=
"books"
>
<div
class=
"cover"
>
<a
href=
"{{ url_for('web.show_book', book_id=entry.id) }}"
data-toggle=
"modal"
data-target=
"#bookDetailsModal"
data-remote=
"false"
>
<span
class=
"img"
>
<img
title=
"{{ entry.title }}"
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
<span
class=
"img"
title=
"{{ entry.title }}"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
{% if entry.id in read_book_ids %}
<span
class=
"badge read glyphicon glyphicon-ok"
></span>
{% endif %}
</span>
</a>
...
...
cps/templates/search.html
View file @
c1ac68e2
...
...
@@ -43,8 +43,8 @@
<div
class=
"cover"
>
{% if entry.has_cover is defined %}
<a
href=
"{{ url_for('web.show_book', book_id=entry.id) }}"
data-toggle=
"modal"
data-target=
"#bookDetailsModal"
data-remote=
"false"
>
<span
class=
"img"
>
<img
title=
"{{entry.title}}"
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
<span
class=
"img"
title=
"{{entry.title}}"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
{% if entry.id in read_book_ids %}
<span
class=
"badge read glyphicon glyphicon-ok"
></span>
{% endif %}
</span>
</a>
...
...
cps/templates/shelf.html
View file @
c1ac68e2
...
...
@@ -30,8 +30,8 @@
<div
class=
"col-sm-3 col-lg-2 col-xs-6 book"
>
<div
class=
"cover"
>
<a
href=
"{{ url_for('web.show_book', book_id=entry.id) }}"
data-toggle=
"modal"
data-target=
"#bookDetailsModal"
data-remote=
"false"
>
<span
class=
"img"
>
<img
title=
"{{entry.title}}"
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
<span
class=
"img"
title=
"{{entry.title}}"
>
<img
src=
"{{ url_for('web.get_cover', book_id=entry.id) }}"
alt=
"{{ entry.title }}"
/>
{% if entry.id in read_book_ids %}
<span
class=
"badge read glyphicon glyphicon-ok"
></span>
{% endif %}
</span>
</a>
...
...
cps/templates/shelf_order.html
View file @
c1ac68e2
...
...
@@ -9,9 +9,9 @@
<div
class=
"row"
>
<div
class=
"col-lg-2 col-sm-4 hidden-xs"
>
{% if entry['visible'] %}
<img
title=
"{{entry
.title
}}"
class=
"cover-height"
src=
"{{ url_for('web.get_cover', book_id=entry['Books']['id']) }}"
>
<img
title=
"{{entry
['Books']['title']
}}"
class=
"cover-height"
src=
"{{ url_for('web.get_cover', book_id=entry['Books']['id']) }}"
>
{% else %}
<img
title=
"{{entry
.title
}}"
class=
"cover-height"
src=
"{{ url_for('static', filename='generic_cover.jpg') }}"
>
<img
title=
"{{entry
['Books']['title']
}}"
class=
"cover-height"
src=
"{{ url_for('static', filename='generic_cover.jpg') }}"
>
{% endif %}
</div>
<div
class=
"col-lg-10 col-sm-8 col-xs-12"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment