Blame Extras/Trac/templates/timeline.cs

4c79b5
4c79b5
4c79b5
4c79b5
4c79b5
4c79b5

Timeline

4c79b5
4c79b5
<form id="prefs" method="get" action="<?cs var:trac.href.timeline ?>">
4c79b5
 
4c79b5
  <label>View changes from 
4c79b5
    var:timeline.from ?>" /></label> and
4c79b5
  <label>
4c79b5
    var:timeline.daysback ?>" /> days back</label>.
4c79b5
 
4c79b5
 <fieldset>
4c79b5
  each:filter = timeline.filters ?>
4c79b5
   <label>
4c79b5
     if:filter.enabled ?> checked="checked" /> 
4c79b5
     var:filter.label ?></label>
4c79b5
  /each ?>
4c79b5
 </fieldset>
4c79b5
 
4c79b5
  <input type="submit" name="update" value="Update" />
4c79b5
 
4c79b5
</form>
4c79b5
4c79b5
def:day_separator(date) ?>
4c79b5
 if:date != current_date ?>
4c79b5
  if:current_date ?>
4c79b5
  set:current_date = date ?>
4c79b5
  

:

4c79b5
 /if ?>
4c79b5
/def ?>
4c79b5
each:event = timeline.events ?>
4c79b5
 call:day_separator(event.date) ?>
4c79b5
 var:event.kind ?>">
4c79b5
 var:event.time ?> 
4c79b5
  if:event.message ?>
4c79b5
   var:event.message ?>
4c79b5
  /if ?>
4c79b5
/each ?>
4c79b5
if:len(timeline.events) ?>
4c79b5
4c79b5
4c79b5
 
4c79b5
 Note: See TracTimeline 
4c79b5
 for information about the timeline view.
4c79b5
4c79b5
4c79b5
4c79b5