source: enpraxis.educommons/branches/educommons-imsintegration/enpraxis/educommons/browser/order_objs.pt @ 146

Revision 146, 1.3 KB checked in by jon, 4 years ago (diff)

Adding branch for ims integration

Line 
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
2      lang="en"
3      i18n:domain="plone"
4      metal:use-macro="here/main_template/macros/master">
5
6  <head>
7      <metal:block fill-slot="top_slot">
8        <tal:insert tal:replace="nothing"
9              tal:define="dummy python:request.set('enable_border', 1)" />
10      </metal:block>
11  </head>
12
13  <body>
14
15    <div metal:fill-slot="main">
16      <h1 class="documentFirstHeading">
17        <tal:block replace="structure view/icon" />
18        <span tal:content="view/title" tal:omit-tag="">Directory Id</span>
19      </h1>
20
21      <a href=""
22         class="link-parent"
23         tal:define="parent_url view/parent_url"
24         tal:condition="parent_url"
25         tal:attributes="href string:${parent_url}/folder_contents"
26         i18n:translate="go_to_parent_url">
27          Up one level
28      </a>
29
30      <p class="documentDescription"
31         tal:content="context/Description"
32         tal:condition="context/Description">
33          Description
34      </p>
35
36      <form name="folderContentsForm"
37            method="post"
38            action="folder_object"
39            tal:attributes="action context/absolute_url">
40        <div tal:replace="structure view/contents_table"></div>
41      </form>
42    </div>
43
44
45  </body>
46</html>
Note: See TracBrowser for help on using the repository browser.