Browse Source

Formularfelder haben jetzt names

master
Georg Hopp 18 years ago
parent
commit
c2321a6de8
  1. 26
      templates/personAdmin/personInUp.tpl.php

26
templates/personAdmin/personInUp.tpl.php

@ -50,43 +50,43 @@
<div class="bgc-box1 f-box1 d-box1"> <div class="bgc-box1 f-box1 d-box1">
<div> <div>
<input type="hidden" id="personId" value="-1" <input type="hidden" id="personId" value="-1"
disabled="true" />
name="personId" disabled="true" />
</div> </div>
<div> <div>
<input type="hidden" id="photographerId" value="-1" <input type="hidden" id="photographerId" value="-1"
disabled="true" />
name="photographerId" disabled="true" />
</div> </div>
<div> <div>
<input type="hidden" id="ownerId" value="-1" <input type="hidden" id="ownerId" value="-1"
disabled="true" />
name="ownerId" disabled="true" />
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="firstname" value="" disabled="true"
id="firstname" name="firstname" value="" disabled="true"
onChange="pInUp.setFirstname (this.value)" /> onChange="pInUp.setFirstname (this.value)" />
<?=_('firstname')?> <?=_('firstname')?>
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="surname" value="" disabled="true"
id="surname" name="surname" value="" disabled="true"
onChange="pInUp.setSurname (this.value)" /> onChange="pInUp.setSurname (this.value)" />
<?=_('surname')?> <?=_('surname')?>
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="company" value="" disabled="true"
id="company" name="company" value="" disabled="true"
onChange="pInUp.setCompany (this.value)" /> onChange="pInUp.setCompany (this.value)" />
<?=_('company')?> <?=_('company')?>
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="email" value="" disabled="true"
id="email" name="email" value="" disabled="true"
onChange="pInUp.setEmail (this.value)" /> onChange="pInUp.setEmail (this.value)" />
<?=_('email')?> <?=_('email')?>
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="url" value="" disabled="true"
id="url" name="url" value="" disabled="true"
onChange="pInUp.setUrl (this.value)" /> onChange="pInUp.setUrl (this.value)" />
<?=_('url')?> <?=_('url')?>
</div> </div>
@ -116,7 +116,7 @@
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="cameraId" value="-1" disabled="true"
id="cameraId" name="cameraId" value="-1" disabled="true"
onChange="pInUp.setCameraId (this.value)" /> onChange="pInUp.setCameraId (this.value)" />
<?=_('cameraId')?> <?=_('cameraId')?>
</div> </div>
@ -145,25 +145,25 @@
<?=_('watermark')?></div> <?=_('watermark')?></div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="wmWidth" value="" disabled="true"
id="wmWidth" name="wmWidth" value="" disabled="true"
onChange="pInUp.setWmWidth (this.value)" /> onChange="pInUp.setWmWidth (this.value)" />
<?=_('watermark width')?> <?=_('watermark width')?>
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="wmHeight" value="" disabled="true"
id="wmHeight" name="wmHeight" value="" disabled="true"
onChange="pInUp.setWmHeight (this.value)" /> onChange="pInUp.setWmHeight (this.value)" />
<?=_('watermark height')?> <?=_('watermark height')?>
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="wmXPos" value="" disabled="true"
id="wmXPos" name="wmXPos" value="" disabled="true"
onChange="pInUp.setWmXPos (this.value)" /> onChange="pInUp.setWmXPos (this.value)" />
<?=_('watermark xPos')?> <?=_('watermark xPos')?>
</div> </div>
<div> <div>
<input type="text" style="width: 200px" maxlength="255" <input type="text" style="width: 200px" maxlength="255"
id="wmYPos" value="" disabled="true"
id="wmYPos" name="wmYPos" value="" disabled="true"
onChange="pInUp.setWmYPos (this.value)" /> onChange="pInUp.setWmYPos (this.value)" />
<?=_('watermark yPos')?> <?=_('watermark yPos')?>
</div> </div>

Loading…
Cancel
Save