diff --git a/ram/portal/templates/bookshelf/book.html b/ram/portal/templates/bookshelf/book.html
index dc08c31..4fad1a2 100644
--- a/ram/portal/templates/bookshelf/book.html
+++ b/ram/portal/templates/bookshelf/book.html
@@ -111,7 +111,7 @@
| Date |
- {{ book.publication_year|default:"-" }} / {{ book.publication_month|default:"-" }} |
+ {{ book.publication_year|default:"-" }} / {{ book.get_publication_month_display|default:"-" }} |
{% endif %}
diff --git a/ram/portal/templates/cards/magazine.html b/ram/portal/templates/cards/magazine.html
index 291485c..471e662 100644
--- a/ram/portal/templates/cards/magazine.html
+++ b/ram/portal/templates/cards/magazine.html
@@ -72,7 +72,7 @@
| Date |
- {{ d.item.publication_year|default:"-" }} / {{ d.item.publication_month|default:"-" }} |
+ {{ d.item.publication_year|default:"-" }} / {{ d.item.get_publication_month_display|default:"-" }} |
| Pages |
diff --git a/ram/portal/views.py b/ram/portal/views.py
index 25006ad..2eb9b33 100644
--- a/ram/portal/views.py
+++ b/ram/portal/views.py
@@ -717,6 +717,7 @@ class GetMagazineIssue(View):
"documents": documents,
"properties": properties,
"type": "magazineissue",
+ "label": "Magazine issue",
},
)
diff --git a/ram/ram/__init__.py b/ram/ram/__init__.py
index bf43356..623d417 100644
--- a/ram/ram/__init__.py
+++ b/ram/ram/__init__.py
@@ -1,4 +1,4 @@
from ram.utils import git_suffix
-__version__ = "0.18.3"
+__version__ = "0.18.4"
__version__ += git_suffix(__file__)