Maketank Theme migration
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-01-30 13:52:59 +01:00
parent f2643ac887
commit 53a6485a6e
413 changed files with 6836 additions and 1985 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>