mirror of https://github.com/zulip/zulip.git
23 lines
993 B
Handlebars
23 lines
993 B
Handlebars
|
<div>
|
||
|
{{#if realm_allow_edit_history}}
|
||
|
{{#tr}}
|
||
|
The following <z-link>uploaded files</z-link> are no longer attached to any messages. They can still be accessed from this message's edit history. Would you like to delete them entirely?
|
||
|
{{#*inline "z-link"}}<a class="uploaded_files_settings_link" href="/#settings/uploaded-files">{{> @partial-block}}</a>{{/inline}}
|
||
|
{{/tr}}
|
||
|
{{else}}
|
||
|
{{#tr}}
|
||
|
The following <z-link>uploaded files</z-link> are no longer attached to any messages. Would you like to delete them entirely?
|
||
|
{{#*inline "z-link"}}<a class="uploaded_files_settings_link" href="/#settings/uploaded-files">{{> @partial-block}}</a>{{/inline}}
|
||
|
{{/tr}}
|
||
|
{{/if}}
|
||
|
</div>
|
||
|
<p>
|
||
|
<ul>
|
||
|
{{#each attachments_list}}
|
||
|
<li>
|
||
|
<a href="/user_uploads/{{this.path_id}}" rel="noopener noreferrer" target="_blank">{{this.name}}</a>
|
||
|
</li>
|
||
|
{{/each}}
|
||
|
</ul>
|
||
|
</p>
|