mirror of https://github.com/zulip/zulip.git
37 lines
1.5 KiB
Handlebars
37 lines
1.5 KiB
Handlebars
{{#with attachment}}
|
|
<tr class="uploaded_file_row" data-attachment-name="{{name}}" data-attachment-id="{{id}}">
|
|
<td>
|
|
<a type="submit" class="tippy-zulip-delayed-tooltip" href="/user_uploads/{{path_id}}" target="_blank" rel="noopener noreferrer" data-tippy-content="{{t 'View file' }}">
|
|
{{ name }}
|
|
</a>
|
|
</td>
|
|
<td>{{ create_time_str }}</td>
|
|
<td>
|
|
{{#if messages }}
|
|
<div class="attachment-messages">
|
|
{{#each messages}}
|
|
<a class="ind-message" href="/#narrow/id/{{ this.id }}">
|
|
#{{ this.id }}
|
|
</a>
|
|
{{/each}}
|
|
</div>
|
|
{{/if}}
|
|
</td>
|
|
<td class="upload-size" >{{ size_str }}</td>
|
|
<td class="actions">
|
|
<span class="edit-attachment-buttons">
|
|
<a type="submit" href="/user_uploads/{{path_id}}" class="button rounded small sea-green tippy-zulip-delayed-tooltip download-attachment" data-tippy-content="{{t 'Download' }}" download>
|
|
<i class="fa fa-download sea-green" aria-hidden="true"></i>
|
|
</a>
|
|
</span>
|
|
<span class="edit-attachment-buttons">
|
|
<button type="submit"
|
|
class="button rounded small delete button-danger remove-attachment tippy-zulip-delayed-tooltip"
|
|
data-tippy-content="{{t 'Delete' }}" data-attachment="{{id}}">
|
|
<i class="fa fa-trash-o" aria-hidden="true"></i>
|
|
</button>
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
{{/with}}
|