script_image.html 709 B

1234567891011
  1. <script type="text/html" id="photos-item-tpl">
  2. <li id="saved-image{id}">
  3. <input id="photo-{id}" type="hidden" name="photo_urls[]" value="{filepath}">
  4. <input class="form-control" id="photo-{id}-name" type="text" name="photo_names[]" value="{name}"
  5. style="width: 200px;" title="{:lang('IMAGE')}{:lang('NAME')}">
  6. <img id="photo-{id}-preview" src="{url}" style="height:36px;width: 36px;"
  7. onclick="imagePreviewDialog(this.src);">
  8. <a href="javascript:uploadOneImage('{:lang('IMAGE_UPLOAD')}','#photo-{id}');">{:lang('REPLACE')}</a>
  9. <a href="javascript:(function(){$('#saved-image{id}').remove();})();">{:lang('DELETE')}</a>
  10. </li>
  11. </script>