Commit b2b22ee1 authored by Lucas Gueiros's avatar Lucas Gueiros
Browse files

remove "created in" from wagtailadmin

parent 01ba1e8e
Pipeline #137 failed with stages
in 0 seconds
...@@ -5,6 +5,7 @@ Unreleased ...@@ -5,6 +5,7 @@ Unreleased
--- ---
- Changed wagtail.contrib.modeladmin to wagtail_modeladmin - Changed wagtail.contrib.modeladmin to wagtail_modeladmin
- Removed references to wagtailadmin/shared/field_as_li.html - Removed references to wagtailadmin/shared/field_as_li.html
- Removed "created in" from wagtail admin
5.2 5.2
--- ---
......
...@@ -10,7 +10,7 @@ from setuptools import find_packages, setup # noqa: E4 ...@@ -10,7 +10,7 @@ from setuptools import find_packages, setup # noqa: E4
setup( setup(
name="wagtailvideos", name="wagtailvideos",
version="5.2.1", version="5.2.2",
description="A wagtail module for uploading and displaying videos in various codecs.", description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme, long_description=readme,
author="Neon Jungle", author="Neon Jungle",
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
{% icon name="media" %} {% icon name="media" %}
<a href="{% url 'wagtailvideos:index' %}"> <a href="{% url 'wagtailvideos:index' %}">
{% blocktrans count counter=total_videos with total_videos|intcomma as total %} {% blocktrans count counter=total_videos with total_videos|intcomma as total %}
<span>{{ total }}</span> Video <span class="visuallyhidden">created in {{ site_name }}</span> <span>{{ total }}</span> Video <span class="visuallyhidden" style="display: none;">created in {{ site_name }}</span>
{% plural %} {% plural %}
<span>{{ total }}</span> Videos <span class="visuallyhidden">created in {{ site_name }}</span> <span>{{ total }}</span> Videos <span class="visuallyhidden" style="display: none;">created in {{ site_name }}</span>
{% endblocktrans %} {% endblocktrans %}
</a> </a>
</li> </li>
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment