[CMF-checkins] CVS: CMF/CMFCollector/skins/collector - collector_issue_contents.pt:1.3

Ken Manheimer klm@zope.com
Fri, 12 Oct 2001 10:43:19 -0400


Update of /cvs-repository/CMF/CMFCollector/skins/collector
In directory cvs.zope.org:/tmp/cvs-serv5006

Modified Files:
	collector_issue_contents.pt 
Log Message:
Making the transcript presentation a macro, in case we want to show it
elsewhere.  (Not using it elsewhere, currently.)


=== CMF/CMFCollector/skins/collector/collector_issue_contents.pt 1.2 => 1.3 ===
 </div>
 
-<div metal:fill-slot="main"
-     tal:define="transcript here/get_transcript">
+<div metal:fill-slot="main">
 
-  <!-- lotsa stuff will appear here -->
+  <div metal:define-macro="transcript">
 
-  <table>
-    <tr>
-      <th colspan="2" align="left">
-         Transcript of Issue
-           <span tal:replace="here/id">ID</span>
-           (<em><span tal:replace="here/Title">TITLE</span></em>)
-      </th>
-    </tr>
-    <tr>
-      <td colspan="2">
-        <table border="1">
-          <tr> <td>
-         <span tal:replace="structure
-                   python: transcript.CookedBody(stx_level=3)">TRANSCRIPT
-         </span>
-          </td> </tr>
-        </table>
-      </td>
-    </tr>
-  </table>
+    <table tal:define="transcript here/get_transcript">
+
+      <tr>
+        <th colspan="2" align="left">
+           Transcript of Issue
+             <span tal:replace="here/id">ID</span>
+             (<em><span tal:replace="here/Title">TITLE</span></em>)
+        </th>
+      </tr>
+      <tr>
+        <td colspan="2">
+          <table border="1">
+            <tr> <td>
+           <span tal:replace="structure
+                     python: transcript.CookedBody(stx_level=3)">TRANSCRIPT
+           </span>
+            </td> </tr>
+          </table>
+        </td>
+      </tr>
+
+    </table>
+
+  </div>
 
 </div>