Modify ↓
Opened 17 years ago
Closed 17 years ago
#6269 closed defect (fixed)
History view has a wrong class
Reported by: | Owned by: | Christian Boos | |
---|---|---|---|
Priority: | normal | Milestone: | 0.11 |
Component: | wiki system | Version: | devel |
Severity: | trivial | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
History view items have a wrong class
attribute
(looks like a RAW Genshi Template).
This is a patch for source:trunk@6114
-
trac/templates/history_view.html
37 37 </tr> 38 38 </thead> 39 39 <tbody> 40 <tr py:for="idx, item in enumerate(history)" class=" idx % 2 and 'odd' or 'even'">40 <tr py:for="idx, item in enumerate(history)" class="${idx % 2 and 'odd' or 'even'}"> 41 41 <td class="diff"> 42 42 <input type="radio" name="old_version" value="$item.version" 43 43 checked="${idx == 1 or None}" />
Attachments (0)
Note:
See TracTickets
for help on using tickets.
Nice catch!