diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-15 18:15:58 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-15 18:21:09 -0800 |
commit | 991f27f75ce0a4381e417a274f08a65c5ddf678b (patch) | |
tree | 546a95b6aca26cd6b1f78423c00466e2bcae5a4b /python/fatcat_web/templates/container_view_browse.html | |
parent | 9d668d2632bd969cfd850650641a76f56a1dbfab (diff) | |
download | fatcat-991f27f75ce0a4381e417a274f08a65c5ddf678b.tar.gz fatcat-991f27f75ce0a4381e417a274f08a65c5ddf678b.zip |
container browse: more polish
Diffstat (limited to 'python/fatcat_web/templates/container_view_browse.html')
-rw-r--r-- | python/fatcat_web/templates/container_view_browse.html | 59 |
1 files changed, 39 insertions, 20 deletions
diff --git a/python/fatcat_web/templates/container_view_browse.html b/python/fatcat_web/templates/container_view_browse.html index 6ea06df8..d16502d0 100644 --- a/python/fatcat_web/templates/container_view_browse.html +++ b/python/fatcat_web/templates/container_view_browse.html @@ -35,18 +35,22 @@ <td rowspan="{{ volume.issues|length }}" class="top aligned"> {% if volume.volume %} <a href="/container/{{ entity.ident }}/browse?volume={{ volume.volume }}">Vol. {{ volume.volume }}</a> + {% else %} + - {% endif %} </td> {% endif %} <td> {% if issue.issue %} - <a href="/container/{{ entity.ident }}/browse?year={{ year.year }}{% if volume.volume %}&volume={{ volume.volume }}{% endif %}&issue={{ issue.issue }}">Issue {{ issue.issue }}</a> + <a href="/container/{{ entity.ident }}/browse?year={{ year.year }}&volume={{ volume.volume or '' }}&issue={{ issue.issue or '' }}">Issue {{ issue.issue }}</a> + {% else %} + - {% endif %} </td> <td class="right aligned"> - <a href="/container/{{ entity.ident }}/browse?year={{ year.year }}{% if volume.volume %}&volume={{ volume.volume }}{% endif %}{% if issue.issue %}&issue={{ issue.issue }}{% endif %}">{{ "{:,}".format(issue.count) }} releases</a> + <a href="/container/{{ entity.ident }}/browse?year={{ year.year }}&volume={{ volume.volume or '' }}&issue={{ issue.issue or '' }}">{{ "{:,}".format(issue.count) }} releases</a> </td> </tr> {% endfor %} @@ -57,7 +61,7 @@ {% endmacro %} {% macro browse_releases(found) %} - <h2> + <h2 style="margin-bottom: 1em;"> {% if request.args.volume %} Volume {{ request.args.volume }} {%- if request.args.issue %}, Issue {{ request.args.issue }}{% endif -%} @@ -66,25 +70,40 @@ Year {{ request.args.year }} {% endif %} </h2> - <br> - {% for release_doc in found.results %} - <div class="ui grid"> - <div class="two wide center aligned column"> - {% if request.args.volume %} - {% if release_doc.pages %} - {{ release_doc.pages }} + {% if not found.results %} + <p><i>No publications found!</i> + {% else %} + <table class="ui very basic compact structured table"> + <thead> + <tr><th class="one wide center aligned">{% if request.args.volume %}Page(s){% else %}Date{% endif %}</th> + <th class="nine wide">Publication</th> + </thead> + <tbody> + {% for release_doc in found.results %} + <tr><td class="center aligned"> + {% if request.args.volume %} + {% if release_doc.pages %} + {{ release_doc.pages }} + {% else %} + - + {% endif %} + {% elif release_doc.release_date %} + {{ release_doc.release_date }} {% else %} - {# blank #} + - {% endif %} - {% elif release_doc.release_date %} - {{ release_doc.release_date }} - {% endif %} - </div> - <div class="fourteen wide column"> - {{ entity_macros.release_search_result_row(release_doc, margin_top=False) }} - </div> - </div> - {% endfor %} + </td> + <td> + {{ entity_macros.release_search_result_row(release_doc, margin_top=False) }} + </td> + {% endfor %} + </tbody> + </table> + {% if found.count_found > found.count_returned %} + <p><i>Showing only the first {{ found.count_returned }} out of {{ found.count_found }} releases</i> + {% endif %} + <p><i><a href="/container/{{ entity.ident }}/browse">Back to full listing</a></i> + {% endif %} {% endmacro %} {% block entity_main %} |