����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.148.113.167 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/ideyshare.name.ng/themes/evolution/views/account/ajax/ |
Upload File : |
<form action="{{ theme.getAccountWebRoot() }}/ajax/edit_file_process" autocomplete="off"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title">{{ t("edit_existing_item", "Edit Existing Item") }} ({{ file.originalFilename }})</h4> </div> <div class="modal-body"> <div class="row"> <div class="col-md-3"> <div class="modal-icon-left"><img src="{{ theme.getAccountImagePath() }}/modal_icons/document_edit.png"/></div> </div> <div class="col-md-9"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="filename" class="control-label">{{ t("filename", "filename")|title }}</label> <div class="input-group"> <input type="text" class="form-control" name="filename" id="filename" value="{{ file.getFilenameExcExtension() }}"/> <span class="input-group-addon">.{{ file.extension }}</span> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="folderName" class="control-label">{{ t('edit_image_sharing_url', 'Sharing Url:') }}</label> <div class="input-group"> <input type="text" class="form-control" value="{{ file.getFullShortUrl() }}" readonly/> <span class="input-group-btn"> <button type="button" class="btn btn-primary" onClick="window.open('{{ file.getFullShortUrl() }}'); return false;"><i class="entypo-link"></i></button> </span> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="description" class="control-label">{{ t("description", "description")|title }}</label> <textarea rows="3" class="form-control" name="description" id="description">{{ file.description }}</textarea> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="keywords" class="control-label">{{ t("keywords", "keywords")|title }}</label> <input type="text" class="form-control tagsinput" name="keywords" id="keywords" value="{{ file.keywords }}"/> </div> </div> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="folder" class="control-label">{{ t("file_folder", "file folder")|title }}</label> <select class="form-control" name="folder" id="folder"> <option value="">{{ t('_default_', '- Default -') }}</option> {% for k,folderListingItem in folderListing %} <option value="{{ k }}"{% if file.folderId == k %} SELECTED{% endif %}> {{ folderListingItem }} </option> {% endfor %} </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="reset_stats" class="control-label">{{ t("reset_stats", "reset stats")|title }}</label> <select class="form-control" name="reset_stats" id="reset_stats"> <option value="0" SELECTED>{{ t('no_keep_stats', 'No, keep stats') }}</option> <option value="1">{{ t('yes_remove_stats', 'Yes, remove stats') }}</option> </select> </div> </div> </div> </div> </div> </div> <div class="modal-footer"> <input type="hidden" name="submitme" id="submitme" value="1"/> <input type="hidden" value="{{ file.id }}" name="fileId"/> <button type="button" class="btn btn-default" data-dismiss="modal">{{ t("cancel", "cancel")|title }}</button> <button type="button" class="btn btn-info" data-submit-btn="true" onClick="processAjaxForm(this, function () { reloadPreviousAjax(); $('.modal').modal('hide'); }); return false;">{{ t("update_item", "update item")|title }} <i class="entypo-check"></i></button> </div> </form>