~ubuntu-branches/ubuntu/hardy/gallery2/hardy-security

« back to all changes in this revision

Viewing changes to modules/core/templates/AdminThemes.tpl

  • Committer: Bazaar Package Importer
  • Author(s): Michael C. Schultheiss
  • Date: 2006-04-16 16:42:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060416164235-8uy0u4bfjdxpge2o
Tags: 2.1.1-1
* New upstream release (Closes: #362936)
  + Bugfixes for Postgres7 (Closes: #359000, #362152)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{*
2
 
 * $Revision: 1.8 $
 
2
 * $Revision: 1.9 $
3
3
 * If you want to customize this file, do not edit it directly since future upgrades
4
4
 * may overwrite it.  Instead, copy it into a new directory called "local" and edit that
5
5
 * version.  Gallery will look for that file first and use it if it exists.
263
263
              <input type="text" size="{$setting.typeParams.size|default:6}"
264
264
               name="{g->formVar var="form[key][`$setting.key`]"}"
265
265
               value="{$form.key[$setting.key]}"/>
 
266
            {elseif ($setting.type == 'textarea')}
 
267
              <textarea style="width:{$setting.typeParams.width|default:'400px'};height:{$setting.typeParams.height|default:'75px'};"
 
268
               name="{g->formVar var="form[key][`$setting.key`]"}">{$form.key[$setting.key]}</textarea>
266
269
            {elseif ($setting.type == 'single-select')}
267
270
              <select name="{g->formVar var="form[key][`$setting.key`]"}">
268
271
                {html_options options=$setting.choices selected=$form.key[$setting.key]}