File: manage_editCommentForm.dtml

package info (click to toggle)
zope-coreblog 1.2.4-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,044 kB
  • ctags: 572
  • sloc: python: 4,099; sh: 58; makefile: 30
file content (86 lines) | stat: -rw-r--r-- 2,127 bytes parent folder | download
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
83
84
85
86
<dtml-comment>
##############################################################################
manage_editEntry.html

Interface for edit a entry.

Copyright (c) 2003-2005 Atsushi Shibata All Rights Reserved.
##############################################################################
</dtml-comment>

<dtml-var manage_page_header>
<dtml-var additional_css>
<dtml-var "manage_form_title(this(), _,
           form_title='Edit Comment'
	   )">

<p class="form-help">
Edit Comment informations. Some fields(with <i>italic</i> title) are optional.
</p>


<table border="0"  cellpadding="0" cellspacing="1">
<dtml-with "getComment(comment_id=comment_id)">
<FORM ACTION="editComment" METHOD="POST">
	<tr>
		<td align="left" valign="top">
		<div class="form-label">
		Title
		</div>
		<input type="text" name="title:string" size="80" value="<dtml-var title html_quote missing="">" />
		</td>
	</tr>

	<tr>
		<td align="left" valign="top">
		<div class="form-label">
		Author
		</div>
		<input type="text" name="author:string" size="40" value="<dtml-var author html_quote missing="">" />
		</td>
	</tr>

	<tr>
		<td align="left" valign="top">
		<div class="form-label">
		EMail
		</div>
		<input type="text" name="email:string" size="40" value="<dtml-var email html_quote missing="">" />
		</td>
	</tr>

	<tr>
		<td align="left" valign="top">
		<div class="form-label">
		URL
		</div>
		<input type="text" name="url:string" size="40" value="<dtml-var url html_quote missing="">" />
		</td>
	</tr>

	<tr>
		<td align="left" valign="top">
		<div class="form-label">
		Body
		</div>
		<textarea name="body:text" cols="60" rows="20"><dtml-var body html_quote></textarea>
		</td>
	</tr>

	<input type="hidden" name="comment_id:int" size="40" value="<dtml-var comment_id html_quote missing="">" />

  <tr>
    <td align="left" valign="top">
    <div class="form-element">
    <input class="form-element" type="submit" name="submit" 
     value="Save Changes" /> 
    </div>
    </td>
  </tr>
</form>
</dtml-with>

</table>


<dtml-var manage_page_footer>