]> git.mxchange.org Git - friendica.git/blob - view/install_checks.tpl
Implement Smarty3
[friendica.git] / view / install_checks.tpl
1 <h1>$title</h1>
2 <h2>$pass</h2>
3 <form  action="$baseurl/index.php?q=install" method="post">
4 <table>
5 {{ for $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{{endif}}{{endif}}"></td><td>{{if $check.required}}(required){{endif}}</td></tr>
7         {{if $check.help }}
8         <tr><td colspan="3"><blockquote>$check.help</blockquote></td></tr>
9         {{endif}}
10 {{ endfor }}
11 </table>
12
13 {{ if $phpath }}
14         <input type="hidden" name="phpath" value="$phpath">
15 {{ endif }}
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 {{ endif }}
24 </form>