57
|
1 |
<html>
|
|
2 |
<TMPL_INCLUDE NAME="headers.tmpl">
|
|
3 |
<body>
|
|
4 |
<h1><TMPL_VAR remote_user>'s Edit Bookmark</h1>
|
|
5 |
<form action="?action=bookmark" method="post" name="edit">
|
|
6 |
<fieldset class="bookmark">
|
|
7 |
<input type="hidden" name="action" value="bookmark"/>
|
|
8 |
<input type="hidden" name="id" value="<TMPL_VAR bkid>"/>
|
|
9 |
<label>Nom: <input type="text" name="name"
|
|
10 |
value="<TMPL_VAR ctitle>"/></label><br/>
|
|
11 |
<label>URL: <input type="text" name="url"
|
|
12 |
value="<TMPL_VAR curl>"/></label><br/>
|
|
13 |
<label for="desc">Description: </label><br/>
|
|
14 |
<textarea name="desc" rows="5" cols="40"><TMPL_VAR desc></textarea>
|
|
15 |
</fieldset>
|
|
16 |
<fieldset class="keywords">
|
|
17 |
<legend>Keywords:</legend>
|
|
18 |
<label>Selected:
|
|
19 |
<select multiple name="kw" size="<TMPL_VAR kw_size>">
|
|
20 |
<TMPL_LOOP Keywords>
|
|
21 |
<option value="<TMPL_VAR id>"
|
|
22 |
<TMPL_IF selected>selected</TMPL_IF> />
|
|
23 |
<TMPL_VAR keyword></option>
|
|
24 |
</TMPL_LOOP>
|
|
25 |
</select>
|
|
26 |
<label>New keywords: <input type="text" name="newkw"> (comma
|
|
27 |
separated list)</label><br/>
|
|
28 |
<button type="reset">Reset</button>
|
|
29 |
</fieldset>
|
|
30 |
<button type="submit" name="step" value="update">Submit</button>
|
|
31 |
<button type="submit" name="step" value="delete">Delete</button>
|
|
32 |
<button type="submit" name="step" value="cancel">Cancel</button>
|
|
33 |
</form>
|
|
34 |
</body>
|
|
35 |
</html>
|
|
36 |
<!--
|
|
37 |
vi: syntax=html
|
|
38 |
-->
|