matthewg
committed
on 08 Jul 05
Adding history files
openacs-4/.../contacts/lib/history.adp (+27)
  1 <h3>#contacts.History#</h3>
  2
  3 <if @form@ eq top>
  4 <formtemplate id="comment_add" style="../../../contacts/resources/forms/inline"></formtemplate>
  5 </if>
  6
  7 <if @history:rowcount@ gt 0>
  8   <dl class="comments">
  9 <multiple name="history">
  10     <dt id="@history.object_id@" class="<if @history.creation_user@ eq @user_id@>mine-</if><if @history.rownum@ odd>odd</if><else>even</else>">@history.date@ #contacts.at# @history.time@ @user_link@</dd>
  11       <dd class="<if @history.creation_user@ eq @user_id@>mine-</if><if @history.rownum@ odd>odd</if><else>even</else>">
  12   
  13         <if @history.include@ nil>
  14               <p>@history.content;noquote@</p>
  15         </if>
  16         <else>
  17               <include src=@history.include@ content=@history.content;noquote@ object_id=@history.object_id@ party_id=@party_id@>
  18         </else>
  19
  20       </dd>
  21 </multiple>
  22   </dl>
  23 </if>
  24 <if @form@ eq bottom>
  25 <formtemplate id="comment_add" style="../../../contacts/resources/forms/inline"></formtemplate>
  26 </if>
  27