summaryrefslogtreecommitdiff
path: root/templates/edit_image_inc.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/edit_image_inc.tpl')
-rw-r--r--templates/edit_image_inc.tpl59
1 files changed, 59 insertions, 0 deletions
diff --git a/templates/edit_image_inc.tpl b/templates/edit_image_inc.tpl
new file mode 100644
index 0000000..4c0ceee
--- /dev/null
+++ b/templates/edit_image_inc.tpl
@@ -0,0 +1,59 @@
+{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}" />
+ <input type="hidden" name="from" value="{$smarty.request.from}" />
+
+ <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}</textarea>
+ {/forminput}
+ </div>
+
+ <div class="row">
+ {formlabel label="Current Image"}
+ {forminput}
+ {if $gContent->mInfo.image_file.storage_path}
+ <img src="{$gContent->mInfo.image_file.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.image_file.source_url}">{$gContent->mInfo.width} x {$gContent->mInfo.height}</a>
+ {elseif $gContent->mInfo.image_file.source_url}
+ <a href="{$gContent->mInfo.image_file.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> &nbsp;&nbsp;&nbsp;&nbsp;
+ <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}