Properties are now shown on view.php and browse.php
[viewsvn.git] / templates / default / view.tpl
1 $doctype
2 <html lang="##LANG##" xml:lang="##XML-LANG##">
3 <head>
4 $headinclude
5 <link rel="stylesheet" href="$viewsvn->path/templates/default/code2.css" media="screen" />
6 <title>{@"View"}</title>
7 </head>
8
9 $header
10
11 <div class="head">{@"Revision Information"}</div>
12 <div class="content">
13 <div><strong>{@"Revision"}:</strong> $logmsg[revision]</div>
14 <div><strong>{@"Author"}:</strong> $logmsg[author]</div>
15 <div><strong>{@"Date"}:</strong> $logmsg[date]</div>
16 <div><strong>{@"Message"}:</strong> $logmsg[message_clean]</div>
17 </div>
18
19 <div class="head" style="border-width: 0px 1px 0px 1px">
20 $navbar
21
22 <span style="font-weight: normal">
23 (
24 <a href="$link[log]">{@"View Log"}</a>
25 <if condition="$show['head']">
26 - <a href="$link[gohead]">{@"Go to HEAD"}</a>
27 - <a href="$link[diffhead]">{@"Diff to HEAD"}</a>
28 </if>
29
30 <if condition="$show['prev']">
31 - <a href="$link[diffprev]">{@"Diff to PREV"}</a>
32 </if>
33 )
34 </span>
35 </div>
36
37 <if condition="$show['props']">
38 <div class="propbox">
39 <ul>
40 $proplist
41 </ul>
42 </div>
43 </if>
44
45 <div class="code"<if condition="$show['props']"> style="border-top: none"</if>>
46 $catdata
47 </div>
48
49 $footer