source: peerreviewplugin/tags/0.12/3.1/codereview/templates/admin_review_report.html

Last change on this file was 15695, checked in by Cinc-th, 7 years ago

PeerReviewPlugin: allow umlauts in code review owner names, document subject and document title when creating a report.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Revision Id
File size: 2.4 KB
Line 
1<!DOCTYPE html
2        PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4<html xmlns="http://www.w3.org/1999/xhtml"
5      xmlns:xi="http://www.w3.org/2001/XInclude"
6      xmlns:py="http://genshi.edgewall.org/"
7      xmlns:i18n="http://genshi.edgewall.org/i18n">
8    <xi:include href="admin.html" />
9    <head>
10        <title>Review Report</title>
11    </head>
12    <body>
13        <h2>Settings for Review Reports</h2>
14            <form action="" id="docvar-form" method="post">
15                <fieldset>
16                    <h3>Document Variables</h3>
17                    <div class="field">
18                        <label>Title:</label>
19                        <input type="text" class="form-control" maxlength="255" id="doctitle"
20                               name="title" value="$title" />
21                    </div>
22                    <p class="help">You may use variables here.</p>
23                    <div class="field">
24                        <label>Subject:</label>
25                        <input type="text" class="form-control" maxlength="255" id="docsubject"
26                               name="subject" value="$subject" />
27                    </div>
28                    <p class="help">You may use variables here.</p>
29                    <h3>Document Template</h3>
30                    <div class="field">
31                        <label>Path:</label>
32                        <input type="text" class="form-control" maxlength="255" id="tmplpath"
33                               name="template" value="$template" />
34                    </div>
35                    <p class="help">The path must be readable by Trac. If no template is specified a default
36                        will be used.</p>
37                    <div class="buttons">
38                        <input name="save" value="${_('Save')}" type="submit" />
39                    </div>
40
41                </fieldset>
42            </form>
43        <p class="help">This information is used when creating a document from a review. You may use the following
44            variable in title and subject which will be replaced with the actual value when creating a document.
45        </p>
46        <p class="help"><strong>$$reviewid</strong>: ID of the review</p>
47        <p class="help"><strong>$$review_name</strong>: review name</p>
48        <p class="help"><strong>Example</strong>: Report for Review $$reviewid</p>
49    </body>
50</html>
Note: See TracBrowser for help on using the repository browser.