MercurialWebTheme

themes/mercurialweb/summary.tmpl

17:3c7ec99354b1
2010-07-13 Paul Boddie Removed links to the branches view since not all Mercurial Web versions support such a view.
     1 {header}     2 <title>{repo|escape} (summary)</title>     3 </head>     4      5 <body>     6      7 <div id="header">     8   <div id="logo"><a href="{url}..{sessionvars%urlparameter}"><img src="{staticurl}mercurial-logo.png" alt="Mercurial logo" /></a></div>     9   <div class="controls">    10     <ul id="navibar">    11     <li class="current"><span>Summary</span></li    12     ><li><a href="{url}shortlog{sessionvars%urlparameter}">Shortlog</a></li    13     ><li><a href="{url}changelog{sessionvars%urlparameter}">Changelog</a></li    14     ><li><a href="{url}tags{sessionvars%urlparameter}">Tags</a></li    15     ><li><a href="{url}file{sessionvars%urlparameter}">Files</a></li    16     ><li><form id="searchform" action="{url}log"><span class="container">    17         <span class="hint">Search</span>&nbsp;<input name="rev" id="searchinput" type="text" size="20" />    18       </span>    19       {sessionvars%hiddenformentry}    20       </form>    21     </li>    22     </ul>    23   </div>    24   <div id="pageline"></div>    25 </div>    26     27 <h2>{repo|escape}</h2>    28     29 <h3>Summary</h3>    30     31 <table>    32   <tbody>    33     <tr>    34       <th width="10%">Description</th>    35       <td>{desc}</td>    36     </tr>    37     <tr>    38       <th>Owner</th>    39       <td>{owner|obfuscate}</td>    40     </tr>    41     <tr>    42       <th>Last change</th>    43       <td>{lastchange|rfc822date}</td>    44     </tr>    45   </tbody>    46 </table>    47     48 <hr />    49     50 <h3>Shortlog</h3>    51     52 <table>    53   <tbody>    54 {shortlog}    55   </tbody>    56 </table>    57     58 <h3>Tags</h3>    59     60 <table>    61   <tbody>    62 {tags}    63   </tbody>    64 </table>    65     66 <h3>Branches</h3>    67     68 <table>    69   <tbody>    70 {branches%branchentry}    71   </tbody>    72 </table>    73     74 {footer}