diff options
Diffstat (limited to 'WebKitTools/TestResultServer/templates')
-rw-r--r-- | WebKitTools/TestResultServer/templates/showfilelist.html | 5 | ||||
-rw-r--r-- | WebKitTools/TestResultServer/templates/uploadform.html | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/WebKitTools/TestResultServer/templates/showfilelist.html b/WebKitTools/TestResultServer/templates/showfilelist.html index fa72b7f..d292fe2 100644 --- a/WebKitTools/TestResultServer/templates/showfilelist.html +++ b/WebKitTools/TestResultServer/templates/showfilelist.html @@ -13,6 +13,7 @@ <div> <table> <tr> + <th>Master</th> <th>Builder</th> <th>Test Type</th> <th>File</th> @@ -22,6 +23,10 @@ {% endif %} {% for file in files %} <tr>{% if file.builder and file.name %} + <td><a href="/testfile?master={{ file.master }}" > + {{ file.master }} + </a> + </td> <td><a href="/testfile?builder={{ file.builder }}" > {{ file.builder }} </a> diff --git a/WebKitTools/TestResultServer/templates/uploadform.html b/WebKitTools/TestResultServer/templates/uploadform.html index 3506c9c..9974a24 100644 --- a/WebKitTools/TestResultServer/templates/uploadform.html +++ b/WebKitTools/TestResultServer/templates/uploadform.html @@ -10,12 +10,16 @@ <br> <table> <tr> + <td class=label><label>Master:</label></td> + <td><input class=inputtext type="text" name="master" placeholder="Chromium"/></td> + </tr> + <tr> <td class=label><label>Builder:</label></td> - <td><input class=inputtext type="text" name="builder" value="Webkit"/></td> + <td><input class=inputtext type="text" name="builder" placeholder="Webkit"/></td> </tr> <tr> <td class=label><label>Test Type:</label></td> - <td><input class=inputtext type="text" name="testtype" value=""/></td> + <td><input class=inputtext type="text" name="testtype" placeholder="layout-tests"/></td> </tr> </table> <br> |