blob: 1da92ea9ae24a7ab669237a4a1f32973ae97285e (
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
40
41
42
43
44
45
46
47
|
<ste:load name="master.html" />
<ste:block name="content">
<ste:default_error />
<ste:default_success />
<form action="$rel_path_to_root/backend/admin/repos" method="post" accept-charset="UTF-8">
<h2><ste:get_translation for="add_repo" /></h2>
<p><strong><ste:get_translation for="repo_baseurl" />:</strong> <input type="text" name="repo_baseurl" /></p>
<p><input type="submit" name="add_repo" /></p>
</form>
<form action="$rel_path_to_root/backend/admin/repos" method="post" accept-charset="UTF-8">
<h2><ste:get_translation for="repo_list" /></h2>
<table class="listtab fullwidth">
<thead>
<tr>
<th> </th>
<th><ste:get_translation for="repo_name" /></th>
<th><ste:get_translation for="repo_description" /></th>
<th><ste:get_translation for="repo_baseurl" /></th>
</tr>
</thead>
<tbody>
<ste:foreach array="repos" value="repo">
<tr>
<td><input type="checkbox" name="repos_multiselect[]" value="$repo[id]" /></td>
<td><ste:escape>$repo[name]</ste:escape></td>
<td><ste:escape>$repo[description]</ste:escape></td>
<td><ste:escape>$repo[baseurl]</ste:escape></td>
</tr>
<ste:else>
<tr>
<td colspan="4" style="font-style: italic; text-align: center;"><ste:get_translation for="no_repos" /></td>
</tr>
</ste:else>
</ste:foreach>
</tbody>
</table>
<div>
<ste:default_delete_yesno name="delete_repos" />
|
<input type="submit" name="force_repo_refresh" value="<ste:get_translation for='force_repo_refresh' />" />
</div>
</form>
</ste:block>
|