]> git.mxchange.org Git - friendica.git/blob - view/smarty3/install_checks.tpl
Implement Smarty3
[friendica.git] / view / smarty3 / install_checks.tpl
1 <h1>{{$title}}</h1>
2 <h2>{{$pass}}</h2>
3 <form  action="{{$baseurl}}/index.php?q=install" method="post">
4 <table>
5 {{foreach $checks as $check}}
6         <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>
7         {{if $check.help}}
8         <tr><td colspan="3"><blockquote>{{$check.help}}</blockquote></td></tr>
9         {{/if}}
10 {{/foreach}}
11 </table>
12
13 {{if $phpath}}
14         <input type="hidden" name="phpath" value="{{$phpath}}">
15 {{/if}}
16
17 {{if $passed}}
18         <input type="hidden" name="pass" value="2">
19         <input type="submit" value="{{$next}}">
20 {{else}}
21         <input type="hidden" name="pass" value="1">
22         <input type="submit" value="{{$reload}}">
23 {{/if}}
24 </form>