Merge pull request #7815 from tobiasd/20191104-template
add missing template for userexport
This commit is contained in:
commit
de015f88d7
2 changed files with 22 additions and 0 deletions
10
view/templates/settings/userexport.tpl
Normal file
10
view/templates/settings/userexport.tpl
Normal file
|
@ -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}}
|
12
view/theme/frio/templates/settings/userexport.tpl
Normal file
12
view/theme/frio/templates/settings/userexport.tpl
Normal file
|
@ -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>
|
Loading…
Reference in a new issue