aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/templates/src/systemtemplates/confirminstall.html
blob: e60e08a6e67804c8d5630e7586db08dbc855aac4 (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
<ste:load name="master.html" />
<ste:block name="content">
	<h2><ste:escape>$name</ste:escape></h2>
	
	<ste:escape>$description</ste:escape>
	
	<h3><ste:get_translation for="plugin_src" /></h3>
	<code><pre><ste:escape>$code</ste:escape></pre></code>
	
	<ste:if>
		$license
		<ste:then>
			<h3><ste:get_translation for="license" /></h3>
			<code><pre><ste:escape>$license</ste:escape></pre></code>
		</ste:then>
	</ste:if>
	
	<h3><ste:get_translation for="really_install" /></h3>
	<div class="notice">
		<ste:get_translation for="plugin_safety_warning" raw="1" />
	</div>
	<form action="$rel_path_to_root/backend/plugin/confirminstall/$plugin_id" method="post">
		<input type="submit" name="yes" value="<ste:get_translation for='yes' />" />
		<input type="submit" name="no" value="<ste:get_translation for='no' />" />
	</form>
</ste:block>