File: connectionEdit.dtml

package info (click to toggle)
zope-mysqlda 2.0.8-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 184 kB
  • ctags: 103
  • sloc: python: 428; sh: 55; makefile: 47
file content (48 lines) | stat: -rw-r--r-- 1,310 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
  <head><title>Edit <dtml-var title_or_id></title></head>
  <body bgcolor="#FFFFFF" link="#000099" vlink="#555555" alink="#77003B">
    <dtml-var manage_tabs>
    
    <h2>Edit <dtml-var title_or_id></h2>
    
    <form action="manage_edit" method="POST">
      <table cellspacing="2">

        <tr>
	  <th align="LEFT" valign="TOP">Id</th>
	  <td align="LEFT" valign="TOP"><dtml-var id></td>
	</tr>

	<tr>
	  <th align="LEFT" valign="TOP"><em>Title</em></th>
	  <td align="LEFT" valign="TOP">
	    <input type="TEXT" name="title" size="40"
                   value="<dtml-var title html_quote>">
	  </td>
	</tr>

	<tr>
	  <th align="LEFT" valign="TOP">Database Connection String</th>
	  <td align="LEFT" valign="TOP">
	    <input type="TEXT" name="connection_string" size="40"
                   value="<dtml-var connection_string html_quote>">
	  </td>
	</tr>
	<tr>
	  <th align="LEFT" valign="TOP">Connect immediately</th>
	  <td align="LEFT" valign="TOP">
            <input name="check" type="CHECKBOX" value="YES" CHECKED>
          </td>
	</tr>

        <tr>
	  <td></td>
	  <td><br><input type="SUBMIT" value="Change"></td>
	</tr>

      </table>
    </form>

  </body>
</html>