~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/templates/bugtasks-and-nominations-table.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-07-17 23:09:32 UTC
  • mfrom: (13452.1.1 revert-lots)
  • Revision ID: launchpad@pqm.canonical.com-20110717230932-sp6yro99is2077fx
[r=wgrant][rollback=13421] Revert r13421 and r13438 (already
 partially reverted in r13443 and restored in r13445). Fix for DSP:+index
 expanders has not yet landed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
  </tal:not-editable>
60
60
</tal:affects-me-too>
61
61
 
 
62
<script type="text/javascript">
 
63
  function toggleFormVisibility(row_id) {
 
64
    row = document.getElementById(row_id)
 
65
    edit_icon = document.getElementById(row_id + "-edit")
 
66
    if (row.style.display=="none") {
 
67
      row.style.display = "table-row";
 
68
    } else {
 
69
      row.style.display = "none";
 
70
    }
 
71
    return false;
 
72
  }
 
73
</script>
 
74
 
62
75
<table
63
76
  id="affected-software"
64
77
  tal:attributes="class python: context.duplicateof and 'duplicate listing' or 'listing'"