summaryrefslogtreecommitdiffstats
path: root/modules-available/dozmod/templates/networkshares.html
blob: aaafa25678b89eac40c3501f35f14cd450c32fc1 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<h1>{{lang_networkshares}}</h1>

<p>
	{{lang_networksharesIntro}}
</p>

<table class="table">
	<thead>
		<tr>
			<th>{{lang_name}}</th>
			<th>{{lang_path}}</th>
			<th>{{lang_target}}</th>
			<th>{{lang_authMethod}}</th>
			<th>{{lang_username}}</th>
			{{#hasEditPermissions}}
			<th class="slx-smallcol">{{lang_active}}</th>
			<th class="slx-smallcol">{{lang_edit}}</th>
			<th class="slx-smallcol">{{lang_delete}}</th>
			{{/hasEditPermissions}}
		</tr>
	</thead>
	<tbody>
	{{#networkshares}}
		<tr>
			<td>{{sharename}}</td>
			<td>{{path}}</td>
			<td>{{mountpoint}}</td>
			<td>
				{{#loginAsUser}}{{lang_loggedInUser}}{{/loginAsUser}}
				{{^loginAsUser}}{{lang_specificUser}}{{/loginAsUser}}
			</td>
			<td>
				{{^loginAsUser}}{{username}}{{/loginAsUser}}
			</td>
			{{#hasEditPermissions}}
			<td class="text-nowrap">
				<form method="post" action="?do=dozmod">
					<input type="hidden" name="token" value="{{token}}">
					<input type="hidden" name="section" value="networkshares">
					<input type="hidden" name="shareid" value="{{shareid}}">
					{{#active}}
						<span class="glyphicon glyphicon-ok text-success"></span>
						<button type="submit" name="action" value="deactivate" class="btn btn-xs btn-default">
							<span class="glyphicon glyphicon-remove"></span>
						</button>
					{{/active}}
					{{^active}}
						<span class="glyphicon glyphicon-remove text-danger"></span>
						<button type="submit" name="action" value="activate" class="btn btn-xs btn-default">
							<span class="glyphicon glyphicon-ok"></span>
						</button>
					{{/active}}
				</form>
			</td>
			<td align="center">
				<a href="?do=dozmod&amp;section=networkshares&amp;show=edit&amp;shareid={{shareid}}" class="btn btn-xs btn-primary">
					<span class="glyphicon glyphicon-edit"></span>
				</a>
			</td>
			<td align="center">
				<button type="button" class="btn btn-xs btn-danger" data-toggle="modal" data-target="#deleteModal" onclick="deleteShare('{{shareid}}')">
					<span class="glyphicon glyphicon-trash"></span>
				</button>
			</td>
			{{/hasEditPermissions}}
		</tr>
	{{/networkshares}}
	</tbody>
</table>
{{#hasEditPermissions}}
<div class="text-right">
	<a href="?do=dozmod&amp;section=networkshares&amp;show=edit" class="btn btn-success {{allowAddShare}}">
		<span class="glyphicon glyphicon-plus"></span>
		{{lang_addShare}}
	</a>
</div>
{{/hasEditPermissions}}

<!-- Modals -->
<form method="post" action="?do=dozmod">
	<input type="hidden" name="token" value="{{token}}">
	<input type="hidden" name="section" value="networkshares">
	<div class ="modal fade" id="deleteModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
		<div class="modal-dialog" role="document">
			<div class="modal-content">
				<div class="modal-header">
					<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
					<h4 class="modal-title" id="myModalLabel">{{lang_delete}}</h4>
				</div>
				<div class="modal-body">
					<p>{{lang_shareDeleteConfirm}}</p>
				</div>
				<div class="modal-footer">
					<input type="hidden" id="delete-share-id" name="shareid" value="">
					<button type="button" class="btn btn-default" data-dismiss="modal">{{lang_cancel}}</button>
					<button type="submit" name="action" value="delete" class="btn btn-danger"><span class="glyphicon glyphicon-trash"></span> {{lang_delete}}</button>
				</div>
			</div>
		</div>
	</div>
</form>

<script type="text/javascript">

	function deleteShare(shareid) {
		$("#delete-share-id").val(shareid);
	}

	document.addEventListener("DOMContentLoaded", function () {

	})

</script>