Edgewall Software
Modify

Opened 17 years ago

Closed 17 years ago

#6269 closed defect (fixed)

History view has a wrong class

Reported by: trac-ja@… 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

     
    3737            </tr>
    3838          </thead>
    3939          <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'}">
    4141              <td class="diff">
    4242                <input type="radio" name="old_version" value="$item.version"
    4343                       checked="${idx == 1 or None}" />

Attachments (0)

Change History (2)

comment:1 by Christian Boos, 17 years ago

Status: newassigned

Nice catch!

comment:2 by Christian Boos, 17 years ago

Resolution: fixed
Status: assignedclosed

Fixed in r6115.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Christian Boos.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Christian Boos to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.