~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/templates/base-layout-macros.pt

  • Committer: Curtis Hovey
  • Date: 2011-12-22 04:43:36 UTC
  • mfrom: (14575 devel)
  • mto: This revision was merged to the branch mainline in revision 14576.
  • Revision ID: curtis.hovey@canonical.com-20111222044336-9trc459wva8vvlzo
Merged devel and resolved conlicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
 
289
289
 
290
290
<metal:debug-timeline define-macro="debug-timeline">
291
 
  <a name="debug_timeline" 
 
291
  <a name="debug_timeline"
292
292
    id="debug_timeline"
293
293
    class="hidden"
294
294
    >
295
 
    <table 
 
295
    <table
296
296
      tal:condition="request/features/visible_render_time"
297
297
      tal:define="timeline_actions modules/canonical.launchpad.webapp.adapter/get_timeline_actions"
298
298
      class="debug-timeline listing"
302
302
        <th>Action</th>
303
303
      </thead>
304
304
      <tr tal:repeat="action timeline_actions">
305
 
        <td class="amount" tal:content="action/duration/fmt:millisecondduration"/>        
 
305
        <td class="amount" tal:content="action/duration/fmt:millisecondduration"/>
306
306
        <td style="font-family: monospace; text-align: left;">
307
307
          <pre class="wrap"><span class="action-category" tal:content="action/category"/>: <span class="action-details" tal:content="action/detail"/></pre>
308
308
        </td>