Merge pull request #7815 from tobiasd/20191104-template

add missing template for userexport
This commit is contained in:
Michael Vogel 2019-11-04 07:51:37 +01:00 committed by GitHub
commit de015f88d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 0 deletions

View 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}}

View 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>