123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- template(name="cardAttachmentsPopup")
- if $gt uploads.length 0
- .attachment-upload {{_ 'uploading'}}
- table
- tr
- th.upload-file-name-descr {{_ 'name'}}
- th.upload-progress-descr {{_ 'progress'}}
- th.upload-remaining-descr {{_ 'remaining_time'}}
- th.upload-speed-descr {{_ 'speed'}}
- each upload in uploads
- tr
- td.upload-file-name-value {{upload.file.name}}
- td.upload-progress-value {{upload.progress.get}}%
- td.upload-remaining-value {{getEstimateTime upload}}
- td.upload-speed-value {{getEstimateSpeed upload}}
- else
- ul.pop-over-list
- li
- input.js-attach-file.hide(type="file" name="file" multiple)
- a.js-computer-upload {{_ 'computer'}}
- li
- a.js-upload-clipboard-image {{_ 'clipboard'}}
- template(name="previewClipboardImagePopup")
- p <kbd>Ctrl</kbd>+<kbd>V</kbd> {{_ "paste-or-dragdrop"}}
- img.preview-clipboard-image()
- button.primary.js-upload-pasted-image {{_ 'upload'}}
- template(name="attachmentDeletePopup")
- p {{_ "attachment-delete-pop"}}
- button.js-confirm.negate.full(type="submit") {{_ 'delete'}}
- template(name="attachmentViewer")
- #viewer-overlay.hidden
- #viewer-top-bar
- span#attachment-name
- a#viewer-close.fa.fa-times-thin
- #viewer-container
- i.fa.fa-chevron-left.attachment-arrow#prev-attachment
- #viewer-content
- img#image-viewer.hidden
- video#video-viewer.hidden(controls="true")
- audio#audio-viewer.hidden(controls="true")
- object#pdf-viewer.hidden(type="application/pdf")
- span.pdf-preview-error {{_ 'preview-pdf-not-supported' }}
- object#txt-viewer.hidden(type="text/plain")
- i.fa.fa-chevron-right.attachment-arrow#next-attachment
- template(name="attachmentGallery")
- .attachment-gallery
- if canModifyCard
- a.attachment-item.add-attachment.js-add-attachment
- i.fa.fa-plus.icon
- each attachments
- .attachment-item
- .attachment-thumbnail-container.open-preview(data-attachment-id="{{_id}}" data-card-id="{{ meta.cardId }}")
- if link
- if(isImage)
- img.attachment-thumbnail(src="{{link}}" title="{{sanitize name}}")
- else if($eq extension 'svg')
- img.attachment-thumbnail(src="{{link}}" title="{{sanitize name}}" type="image/svg+xml")
- else if($eq extension 'mp3')
- video.attachment-thumbnail(title="{{sanitize name}}")
- source(src="{{link}}" type="audio/mpeg")
- else if($eq extension 'ogg')
- video.attachment-thumbnail(title="{{sanitize name}}")
- source(src="{{link}}" type="video/ogg")
- else if($eq extension 'webm')
- video.attachment-thumbnail(title="{{sanitize name}}")
- source(src="{{link}}" type="video/webm")
- else if($eq extension 'mp4')
- video.attachment-thumbnail(title="{{sanitize name}}")
- source(src="{{link}}" type="video/mp4")
- else
- span.attachment-thumbnail-text= extension
- .attachment-details-container
- .attachment-details
- div
- b
- = name
- span.file-size ({{fileSize size}})
- .attachment-actions
- a.js-download(href="{{link}}?download=true", download="{{name}}")
- i.fa.fa-download.icon(title="{{_ 'download'}}")
- if currentUser.isBoardMember
- unless currentUser.isCommentOnly
- unless currentUser.isWorker
- a.js-rename
- i.fa.fa-pencil-square-o.icon(title="{{_ 'rename'}}")
- a.js-confirm-delete
- i.fa.fa-trash.icon(title="{{_ 'delete'}}")
- a.fa.fa-navicon.icon.js-open-attachment-menu(data-attachment-link="{{link}}" title="{{_ 'attachmentActionsPopup-title'}}")
- template(name="attachmentActionsPopup")
- ul.pop-over-list
- li
- if isImage
- a(class="{{#if isCover}}js-remove-cover{{else}}js-add-cover{{/if}}")
- i.fa.fa-book
- i.fa.fa-picture-o
- if isCover
- | {{_ 'remove-cover'}}
- else
- | {{_ 'add-cover'}}
- if currentUser.isBoardAdmin
- if isImage
- a(class="{{#if isBackgroundImage}}js-remove-background-image{{else}}js-add-background-image{{/if}}")
- i.fa.fa-picture-o
- if isBackgroundImage
- | {{_ 'remove-background-image'}}
- else
- | {{_ 'add-background-image'}}
- if $neq versions.original.storage "fs"
- a.js-move-storage-fs
- i.fa.fa-arrow-right
- | {{_ 'attachment-move-storage-fs'}}
- if $neq versions.original.storage "gridfs"
- if versions.original.storage
- a.js-move-storage-gridfs
- i.fa.fa-arrow-right
- | {{_ 'attachment-move-storage-gridfs'}}
- if $neq versions.original.storage "s3"
- if versions.original.storage
- a.js-move-storage-s3
- i.fa.fa-arrow-right
- | {{_ 'attachment-move-storage-s3'}}
- template(name="attachmentRenamePopup")
- input.js-edit-attachment-name(type='text' autofocus value="{{getNameWithoutExtension}}" dir="auto")
- .edit-controls.clearfix
- button.primary.confirm.js-submit-edit-attachment-name(type="submit") {{_ 'save'}}
|