aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/admin_site.tpl
blob: e09996aeeb5a65ab5ee98ccbd215937661a81f2e (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
<script>
	$(function(){
		
		$("#cnftheme").fancybox({
			width: 800,
			autoDimensions: false,
			onStart: function(){
				var theme = $("#id_theme :selected").val();
				$("#cnftheme").attr('href',"$baseurl/admin/themes/"+theme);
			}, 
			onComplete: function(){
				$("div#fancybox-content form").submit(function(e){
					var url = $(this).attr('action');
					// can't get .serialize() to work...
					var data={};
					$(this).find("input").each(function(){
						data[$(this).attr('name')] = $(this).val();
					});
					$(this).find("select").each(function(){
						data[$(this).attr('name')] = $(this).children(":selected").val();
					});
					console.log(":)", url, data);
					
					$.post(url, data, function(data) {
						if(timer) clearTimeout(timer);
						NavUpdate();
						$.fancybox.close();
					})
					
					return false;
				});
				
			}
		});
	});
</script>
<div id='adminpage'>
	<h1>$title - $page</h1>
	
	<form action="$baseurl/admin/site" method="post">
    <input type='hidden' name='form_security_token' value='$form_security_token'>

	{{ inc field_input.tpl with $field=$sitename }}{{ endinc }}
	{{ inc field_textarea.tpl with $field=$banner }}{{ endinc }}
	{{ inc field_select.tpl with $field=$language }}{{ endinc }}
	{{ inc field_select.tpl with $field=$theme }}{{ endinc }}
	{{ inc field_select.tpl with $field=$ssl_policy }}{{ endinc }}
	
	<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
	
	<h3>$registration</h3>
	{{ inc field_input.tpl with $field=$register_text }}{{ endinc }}
	{{ inc field_select.tpl with $field=$register_policy }}{{ endinc }}
	
	<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>

	<h3>$upload</h3>
	{{ inc field_input.tpl with $field=$maximagesize }}{{ endinc }}
	
	<h3>$corporate</h3>
	{{ inc field_input.tpl with $field=$allowed_sites }}{{ endinc }}
	{{ inc field_input.tpl with $field=$allowed_email }}{{ endinc }}
	{{ inc field_checkbox.tpl with $field=$block_public }}{{ endinc }}
	{{ inc field_checkbox.tpl with $field=$force_publish }}{{ endinc }}
	{{ inc field_checkbox.tpl with $field=$no_community_page }}{{ endinc }}
	{{ inc field_input.tpl with $field=$global_directory }}{{ endinc }}
	
	<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
	
	<h3>$advanced</h3>
	{{ inc field_input.tpl with $field=$proxy }}{{ endinc }}
	{{ inc field_input.tpl with $field=$proxyuser }}{{ endinc }}
	{{ inc field_input.tpl with $field=$timeout }}{{ endinc }}
	{{ inc field_input.tpl with $field=$delivery_interval }}{{ endinc }}
	{{ inc field_input.tpl with $field=$poll_interval }}{{ endinc }}
	{{ inc field_input.tpl with $field=$maxloadavg }}{{ endinc }}
	{{ inc field_input.tpl with $field=$abandon_days }}{{ endinc }}
	
	<div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
	
	</form>
</div>