gecko-dev/tools/reporter/templates/report.tpl
robert%accettura.com b7a36a3dbe A whole lotta changin' goin' on...
- make configs consistant (app_url and app_path weren't making sense)
- move includes out of /app since it's used by more than just /app
- documentation on contrib classes needed
- implement templating engine
- fix spacing through all code
- some css changes to improve our looks (slightly)
- escape login variables
- Custom Column Queries
- Fix Pagination when using custom queries, or aggregate view
- Only query for total records if we the data set is full (>= $_GET['show']).  Pointless to figure how how many pages when we know we don't fill the first.
- truncate all columns at 100 characters in query view so pages don't span to far
- truncate all url's in report view over 100 chars in length
- Statistics (initial landing)
- Don't use cache-control to prevent slowness (bug 296670)
- Slightly revised css theming
- Add schema
- Rename config to config-default
2005-06-10 03:58:46 +00:00

67 lines
1.4 KiB
Smarty

{if $error != ''}<h3 class="rmo_error">Error: {$error}</h3>{else}
<table id="report_table">
<tr>
<th>Report ID:</th>
<td>{$report_id}</td>
</tr>
<tr>
<th>URL:</th>
<td><a href="{$report_url}" rel="nofollow external" title="Visit the page">{$report_url|truncate:60}</a></td>
</tr>
<tr>
<th>Host:</th>
<td><a href="{$host_url}" title="see all reports for {$host_hostname}">Reports for {$host_hostname}</a></td>
</tr>
<tr>
<th>Problem Type:</th>
<td>{$report_problem_type}</td>
</tr>
<tr>
<th>Behind Login:</th>
<td>{$report_behind_login}</td>
</tr>
<tr>
<th>Product:</th>
<td>{$report_product}</td>
</tr>
<tr>
<th>Gecko Version:</th>
<td>{$report_gecko}</td>
</tr>
<tr>
<th>Platform:</th>
<td>{$report_platform}</td>
</tr>
<tr>
<th>OS/CPU:</th>
<td>{$report_oscpu}</td>
</tr>
<tr>
<th>Language:</th>
<td>{$report_language}</td>
</tr>
<tr>
<th>User Agent:</th>
<td>{$report_useragent}</td>
</tr>
<tr>
<th>Build Config:</th>
<td>{$report_buildconfig}</td>
</tr>
{if $is_admin == true}
<tr>
<th>Email:</th>
<td>{$report_email}</td>
</tr>
<tr>
<th>IP Address:</th>
<td><a href="http://ws.arin.net/cgi-bin/whois.pl?queryinput={$report_ip}" rel="external" target="_blank" title="Lookup IP: {$report_ip}">{$report_ip}</a></td>
</tr>
{/if}
<tr>
<th>Description:</th>
<td>{$report_description}</td>
</tr>
</table>{/if}