summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/templates/settings-admin.php
blob: 44864c24717176a5f9efeb9b253b69dbeea17746 (plain)
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
<div class="section" id="mailTemplateSettings" >
	<h2><?php p($l->t('Mail templates'));?></h2>

	<div class="actions">

		<div>
			<label for="mts-theme"><?php p($l->t('Theme'));?></label>
			<select id="mts-theme">
				<?php foreach($_['themes'] as $theme): ?>
				<option><?php p($theme); ?></option>
				<?php endforeach; ?>
			</select>
		</div>

		<div>
			<label for="mts-template"><?php p($l->t('Template'));?></label>
			<select id="mts-template">
				<?php foreach($_['editableTemplates'] as $template => $editable): ?>
				<option><?php p($template); ?></option>
				<?php endforeach; ?>
			</select>
		</div>

	</div>
	
	<div class="templateEditor">
		<textarea></textarea>
	</div>
	
	<div class="actions">

		<button class="reset"><?php p($l->t('Reset'));?></button>

		<button class="save"><?php p($l->t('Save'));?></button>

		<span id="mts-msg" class="msg"></span>

	</div>
</div>