Mercurial > hg > ChinaGisRestApi
annotate gis_gui/blocks/template.pt @ 255:ec7b63319fad
GIS-Links from MPDL-Documents now served by Mappit-Server
author | fknauft |
---|---|
date | Wed, 28 Sep 2011 17:43:50 +0200 |
parents | d6c7bedf4370 |
children | 5b38b50052e4 |
rev | line source |
---|---|
63 | 1 <tal:block metal:define-macro="module" |
2 tal:define="title python: request.get('title',''); | |
3 impermanent python: request.get('impermanent','true');"> | |
4 <div tal:attributes="class string:block $title"> | |
5 <!-- TitleBar --> | |
6 <div class="titlebar"> | |
7 <h1> | |
8 <tal:block metal:define-slot="title"></tal:block> | |
9 </h1> | |
10 <tal:block tal:condition="python:impermanent=='true'"> | |
11 <div class="close_button"> x </div> | |
248 | 12 <!-- FJK: das soll ein Reload-Button werden --> |
253
d6c7bedf4370
New reload button active in upper right corner of block
fknauft
parents:
248
diff
changeset
|
13 <div class="reload_button" ><img src="./icons/reload.png" alt="Reload" style="width: 20px;"></div> |
63 | 14 </tal:block> |
15 <div class="type_icon"> <tal:block metal:define-slot="icon"></tal:block> </div> | |
16 </div> | |
17 | |
18 <!-- Body --> | |
19 <div class="body"> | |
20 <!-- Menu --> | |
21 <div class="menu menubar"> | |
22 <tal:block metal:define-slot="menu"></tal:block> | |
23 </div> | |
24 <!-- Content --> | |
25 <div class="content"> | |
26 <tal:block metal:define-slot="content"></tal:block> | |
27 </div> | |
28 | |
29 </div><!--/body --> | |
30 </div><!--/segment--> | |
31 </tal:block> |