open in new tab

This commit is contained in:
Matthias 2021-09-18 02:48:25 +02:00
parent 21dee0d459
commit aa120a8197
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -25,7 +25,7 @@
{% if plugin.has_urls %}
<h4>{% trans "URLs" %}</h4>
{% define plugin.base_url as base %}
<p>{% blocktrans %}The Base-URL for this plugin is <a href="/{{ base }}"><strong>{{ base }}</strong></a>.{% endblocktrans %}</p>
<p>{% blocktrans %}The Base-URL for this plugin is <a href="/{{ base }}" target="_blank"><strong>{{ base }}</strong></a>.{% endblocktrans %}</p>
<table class='table table-striped table-condensed'>
<thead>
@ -40,7 +40,7 @@
<tr>
<td>{{key}}</td>
<td>{{entry.1}}</td>
<td><a href="/{{ base }}{{entry.1}}">{% trans 'open' %}</a></td>
<td><a href="/{{ base }}{{entry.1}}" target="_blank">{% trans 'open in new tab' %}</a></td>
</tr>
{% endif %}{% endfor %}
</tbody>