Merge pull request #7815 from tobiasd/20191104-template

add missing template for userexport
2022.09-rc
Michael Vogel 2019-11-04 07:51:37 +01:00 zatwierdzone przez GitHub
commit de015f88d7
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 22 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,10 @@
<h3>{{$title}}</h3>
{{foreach $options as $o}}
<dl>
<dt><a href="{{$o.0}}">{{$o.1}}</a></dt>
<dd>{{$o.2}}</dd>
</dl>
{{/foreach}}

Wyświetl plik

@ -0,0 +1,12 @@
<div class="generic-page-wrapper">
{{* include the title template for the settings title *}}
{{include file="section_title.tpl" title=$title}}
{{foreach $options as $o}}
<dl>
<dt><a href="{{$o.0}}">{{$o.1}}</a></dt>
<dd>{{$o.2}}</dd>
</dl>
{{/foreach}}
</div>