Browse Source

remove not using vars

pull/970/head
Alexey Makhov 10 years ago
parent
commit
c0ad512398
  1. 6
      templates/repo/diff.tmpl

6
templates/repo/diff.tmpl

@ -105,9 +105,9 @@
{{else}} {{else}}
<table> <table>
<tbody> <tbody>
{{range $j, $section := $file.Sections}} {{range .Sections}}
{{range $k, $line := $section.Lines}} {{range $k, $line := .Lines}}
<tr class="{{DiffLineTypeToStr .Type}}-code nl-{{$i}} ol-{{$i}}"> <tr class="{{DiffLineTypeToStr .Type}}-code nl-{{$k}} ol-{{$k}}">
<td class="lines-num lines-num-old"> <td class="lines-num lines-num-old">
<span rel="{{if $line.LeftIdx}}diff-L{{Sha1 $file.Name}}{{$line.LeftIdx}}{{end}}">{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}</span> <span rel="{{if $line.LeftIdx}}diff-L{{Sha1 $file.Name}}{{$line.LeftIdx}}{{end}}">{{if $line.LeftIdx}}{{$line.LeftIdx}}{{end}}</span>
</td> </td>

Loading…
Cancel
Save