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.
17 lines
410 B
17 lines
410 B
2 years ago
|
{# array contains Sub page icon and text #}
|
||
|
{% set header = {
|
||
|
'privileges': {
|
||
|
'image': 'b_usrlist',
|
||
|
'text': 'Privileges'|trans
|
||
|
}
|
||
|
} %}
|
||
|
<h2>
|
||
|
{% if is_image|default(true) %}
|
||
|
{{ get_image(header[type]['image']) }}
|
||
|
{% else %}
|
||
|
{{ get_icon(header[type]['image']) }}
|
||
|
{% endif %}
|
||
|
{{ header[type]['text'] }}
|
||
|
{{ link is defined ? show_mysql_docu(link) }}
|
||
|
</h2>
|