welcome on board new 'Sparkle' theme and also welcome on board BNoiZe as theme maintainer (creater of Sparkle theme)

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2013-10-01 15:21:35 +02:00
parent ecdb9ddbdc
commit 38a53e49fd
390 changed files with 7923 additions and 0 deletions

4
templates/Sparkle/formfields/bool.tpl vendored Normal file
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>{$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>

4
templates/Sparkle/formfields/text.tpl vendored Normal file
View File

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