You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
429 B
13 lines
429 B
2 years ago
|
<td{{ nowrap ? ' class="text-nowrap"' }}>
|
||
|
{{ is_selected ? '<strong>' }}
|
||
|
<a class="foreign_value" data-key="{{ keyname }}" href="#" title="
|
||
|
{%- trans 'Use this value' %}{{ title is not empty ? ': ' ~ title }}">
|
||
|
{% if nowrap %}
|
||
|
{{ keyname }}
|
||
|
{% else %}
|
||
|
{{ description }}
|
||
|
{% endif %}
|
||
|
</a>
|
||
|
{{ is_selected ? '</strong>' }}
|
||
|
</td>
|