Maketank theme

This commit is contained in:
2016-12-16 13:23:16 +01:00
parent b4829b521b
commit 3542e85195
298 changed files with 8582 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="checkbox" name="{$fieldname}" value="1" <if( $fielddata['value'] == '1' )>checked="checked"</if> /></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="file" class="file" name="{$fieldname}" /></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td>{$fielddata['value']}</td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="password" class="text" name="{$fieldname}" value="{$value}" /></td>
</tr>

View File

@@ -0,0 +1,3 @@
<tr>
<td colspan="2">$label</td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><select name="{$fieldname}<if $multiple == true>[]</if>"<if $multiple == true> multiple="multiple"</if>>{$options}</select></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="text" class="text" name="{$fieldname}" value="{$value}" /></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><textarea rows="12" cols="40" name="{$fieldname}">{$value}</textarea></td>
</tr>