blob: 75080321edb7df0167e3fbcfc531df26a142ae4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{strip}
{form legend="Edit Image Details"}
<input type="hidden" name="gallery_id" value="{$smarty.request.gallery_id}"/>
<input type="hidden" name="image_id" value="{$imageId}"/>
<input type="hidden" name="ajax" value="{$smarty.request.ajax}" />
<div class="row">
{formlabel label="Title" for="image-title"}
{forminput}
<input type="text" name="title" id="image-title" value="{$gContent->mInfo.title|escape}" maxlength="160" size="40"/>
{/forminput}
</div>
<div class="row">
{formlabel label="Description" for="image-desc"}
{forminput}
<textarea name="edit" id="image-desc" rows="4" cols="40">{$gContent->mInfo.data|escape}</textarea>
{/forminput}
</div>
<div class="row">
{formlabel label="Current Image"}
{forminput}
{if $gContent->mInfo.storage_path}
<img src="{$gContent->mInfo.thumbnail_url.medium}" alt="{$gContent->mInfo.title|escape}" />
<br />
<small>
{if $gContent->mInfo.width && $gContent->mInfo.height}
{tr}Full size{/tr} - <a href="{$gContent->mInfo.source_url}">{$gContent->mInfo.width} x {$gContent->mInfo.height}</a>
{elseif $gContent->mInfo.source_url}
<a href="{$gContent->mInfo.source_url}">{tr}Full size{/tr}</a>
{/if}
</small>
{else}
<img src="{$smarty.const.FISHEYE_PKG_URL}image/no_image.png" alt="{$gContent->mInfo.title|escape}" />
{/if}
{/forminput}
</div>
<div class="row">
{formlabel label="Rotate Image"}
{forminput}
<label><input type="radio" name="rotate_image" value="-90"/> {biticon ipackage="fisheye" iname="rotate_ccw" iexplain="Rotate Counter Clockwise"}</label>
<label>{biticon ipackage="fisheye" iname="rotate_cw" iexplain="Rotate Clockwise"} <input type="radio" name="rotate_image" value="90"/></label>
<br />
<label><input type="radio" name="rotate_image" value="" checked="checked"/> {tr}don't rotate{/tr}</label>
{/forminput}
</div>
<div class="row">
{include file="bitpackage:fisheye/resize_image_select.tpl"}
</div>
<div class="row submit">
<input type="submit" name="saveImage" value="Save Image"/>
</div>
{/form}
{/strip}
|