diff --git a/css/zoostyle.css b/css/zoostyle.css
index e667a549..95e88e18 100644
--- a/css/zoostyle.css
+++ b/css/zoostyle.css
@@ -1512,7 +1512,7 @@ a:hover.copy {
.album-hashtag {
border-radius: 6px;
- border: 1px solid #333;
+ border: 1px solid #666;
padding: 2px 8px;
margin-right: 2px;
line-height: 2;
diff --git a/ui/templates/default/album/info.html b/ui/templates/default/album/info.html
index 6630792f..d810f3f4 100644
--- a/ui/templates/default/album/info.html
+++ b/ui/templates/default/album/info.html
@@ -16,65 +16,69 @@
{% endif %}
-
-
- Album: |
- {{ album.album }} |
- |
- Collection: |
+
+
+ Album: |
+ {{ album.album }} |
+ |
+ Collection: |
{%- set showMissing = 'missing' -%}
{%- if album.location == 'G' -%}
- Deep Storage {{ album.bin }}
+ Deep Storage {{ album.bin }}
{%- elseif album.location == 'M' -%}
- Missing
+ Missing
{%- set showMissing = 'found' -%}
{%- elseif album.location == 'C' -%}
- A-File
+ A-File
{%- elseif album.location == 'E' -%}
- Review Shelf
+ Review Shelf
{%- elseif album.location == 'F' -%}
- Out for Review
+ Out for Review
{%- elseif album.location == 'U' -%}
- Deaccessioned
+ Deaccessioned
{%- set showMissing = false -%}
{%- elseif album.medium == 'D' -%}
- Digital
+ Digital
{%- set showMissing = false -%}
{%- else -%}
- {{ GENRES[album.category] }} {{ album.medium != 'C' ? MEDIA[album.medium] }}
+ {{ GENRES[album.category] }} {{ album.medium != 'C' ? MEDIA[album.medium] }}
{%- endif -%}
-
-{% if app.session.isAuth('u') and showMissing %}
- [report {{ showMissing }}...]
-{% endif -%}
- |
-Artist: |
-{% if album.iscoll %}
-{{ artist }}
-{% else %}
-{{ artist }}
-{% endif %}
- |
- |
-Added: | {{ album.created | date('M Y') }} |
-Label: |
-{% if album.pubkey %}
-{{ album.name }}
-{% else %}
-(Unknown)
-{% endif %}
- | |
-{% if app.session.isAuth('u') %}
-Write a review of this album
-{% endif ~%}
- |
-
+
+{%- if app.session.isAuth('u') and showMissing -%}
+ [report {{ showMissing }}...]
+{%- endif -%}
+ |
+
+ Artist: |
+{%- if album.iscoll -%}
+ {{ artist }}
+{%- else -%}
+ {{ artist }}
+{%- endif -%}
+ |
+ |
+ Added: | {{ album.created | date('M Y') }} |
+
+ Label: |
+{%- if album.pubkey -%}
+ {{ album.name }}
+{%- else -%}
+ (Unknown)
+{%- endif -%}
+ |
+ |
+{%- if app.session.isAuth('u') -%}
+ Write a review of this album
+{%- endif -%}
+ |
+
+
{% if hashtags | length %}
-
+
{% for tag, index in hashtags %}
- {{ tag }}
+ {{ tag }}
{% endfor %}
-
+
{% endif %}