File: delete.html

package info (click to toggle)
trac-codecomments 1.1.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 348 kB
  • ctags: 191
  • sloc: python: 593; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,293 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
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:py="http://genshi.edgewall.org/"
      xmlns:xi="http://www.w3.org/2001/XInclude">
  <xi:include href="layout.html" />
  <head>
    <title>Code Comments - Delete Comment</title>
  </head>

  <body>
    <div id="content" class="helloworld">
        <h1>Delete Comment</h1>
        <h2>Do you want to delete this comment:</h2>
        <dl>
            <dt>ID</dt>
            <dd>$comment.id</dd>
            
            <dt>Author</dt>
            <dd>$comment.author</dd>

            <dt>Time</dt>
            <dd>${comment.formatted_date()}</dd>
            
            <dt>Text</dt>
            <dd>$comment.html</dd>
            
            <dt>Path</dt>
            <dd>${comment.path_link_tag()}</dd>
        </dl>
        <p><form action="${href('code-comments', 'delete')}" method="post">
            <input type="hidden" name="return_to" value="$return_to" />
            <input type="hidden" name="id" value="$comment.id" />
            <input type="submit" name="submit" value="Delete" />
            <a href="javascript:history.go(-1);">Cancel</a>
        </form>
        </p>
    </div>
  </body>
</html>