Skip to content
Snippets Groups Projects
Commit 1cf8c816 authored by Pierre Dureau's avatar Pierre Dureau Committed by Florent Torregrosa
Browse files

Issue #3347891 by pdureau, Grimreaper: UI Patterns Library: print tags by default

parent d765ff9d
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,16 @@
{# Pattern name and description. #}
<h3 class="pattern-preview__label">{{ pattern.label }}</h3>
<p class="pattern-preview__description">{{ pattern.description }}</p>
{% if pattern.tags %}
<div class="pattern-preview__tags">
{{ "Tags:"|t }}
<ul>
{% for tag in pattern.tags %}
<li>{{ tag }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{# Pattern fields descriptions. #}
<table class="pattern-preview__fields">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment