]> git.mxchange.org Git - friendica.git/blob - view/templates/install_checks.tpl
Merge pull request #2048 from strk/group_post
[friendica.git] / view / templates / install_checks.tpl
1
2 <h1>{{$title}}</h1>
3 <h2>{{$pass}}</h2>
4 <form  action="{{$baseurl}}/index.php?q=install" method="post">
5 <table>
6 {{foreach $checks as $check}}
7         <tr><td>{{$check.title}} </td><td><span class="icon s22 {{if $check.status}}on{{else}}{{if $check.required}}off{{else}}yellow{{/if}}{{/if}}"></td><td>{{if $check.required}}(required){{/if}}</td></tr>
8         {{if $check.help}}
9         <tr><td colspan="3"><blockquote>{{$check.help}}</blockquote></td></tr>
10         {{/if}}
11 {{/foreach}}
12 </table>
13
14 {{if $phpath}}
15         <input type="hidden" name="phpath" value="{{$phpath|escape:'html'}}">
16 {{/if}}
17
18 {{if $passed}}
19         <input type="hidden" name="pass" value="2">
20         <input type="submit" value="{{$next|escape:'html'}}">
21 {{else}}
22         <input type="hidden" name="pass" value="1">
23         <input type="submit" value="{{$reload|escape:'html'}}">
24 {{/if}}
25 </form>