Changeset 833

Show
Ignore:
Timestamp:
06/14/07 10:58:11 (2 years ago)
Author:
sgillies
Message:

Add responsibilities to corp

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Bibliomane/trunk/bibliomane/browser/corp.pt

    r832 r833  
    3131    </div> 
    3232   
    33     <!-- Relationships  
     33    <!-- Relationships --> 
    3434  
    3535    <h2>Relationships</h2> 
    3636 
    37     <h3>Is a Realization of</h3> 
     37    <h3>Creations</h3> 
    3838   
    39     <div class="widget"> 
    40       <a href=".." 
    41         tal:content="context/__parent__/title"> 
    42         ITEM 
     39    <div class="widget" tal:repeat="work view/creations"> 
     40      <a 
     41        tal:attributes="href work/@@absolute_url" 
     42        tal:content="work/title"> 
     43        WORK 
    4344      </a> 
    4445    </div> 
     46 
     47    <h3>Realizations</h3> 
    4548   
    46     <h3>Is Embodied in</h3> 
    47    
    48     <div class="widget" tal:repeat="item context/values"> 
    49       <a  
    50         tal:attributes="href item/@@absolute_url" 
    51         tal:content="item/title|string:Untitled"> 
    52         ITEM 
     49    <div class="widget" tal:repeat="work view/realizations"> 
     50      <a 
     51        tal:attributes="href work/@@absolute_url" 
     52        tal:content="work/title"> 
     53        WORK 
    5354      </a> 
    5455    </div> 
    55      
    56     --> 
     56 
     57    <h3>Productions</h3> 
     58   
     59    <div class="widget" tal:repeat="work view/productions"> 
     60      <a 
     61        tal:attributes="href work/@@absolute_url" 
     62        tal:content="work/title"> 
     63        WORK 
     64      </a> 
     65    </div> 
     66 
     67    <h3>Items</h3> 
     68   
     69    <div class="widget" tal:repeat="work view/items"> 
     70      <a 
     71        tal:attributes="href work/@@absolute_url" 
     72        tal:content="work/title"> 
     73        WORK 
     74      </a> 
     75    </div> 
    5776 
    5877  </body>