summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/templates/images-orphaned.html
blob: d1b74a42aa9346788092d2cd656cc0142575bb55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<table class="table">
	<thead>
	<tr>
		<th>{{lang_fileName}}</th>
		<th>{{lang_status}}</th>
	</tr>
	</thead>
	<tbody>
	{{#files}}
	<tr>
		<td>{{file}}</td>
		<td>{{status}}</td>
	</tr>
	{{/files}}
	</tbody>
</table>

{{#show_delete}}
<button {{perm.orphaned.delete.disabled}} id="orphan-delete"
		  class="btn btn-danger pull-right" type="button"
			data-confirm="#confirm-orphan-delete">
	<span class="glyphicon glyphicon-search"></span>
	{{lang_orphanDeleteButton}}
</button>
{{/show_delete}}