source: trunk/grails-app/views/templateEditor/templates.gsp @ 373

Last change on this file since 373 was 373, checked in by duh, 13 years ago
  • template editor dynamically instantiates entities
  • dialog changes
  • Property svn:keywords set to Date Author Rev
File size: 560 bytes
Line 
1<%
2        /**
3         * Template Editor overview template
4         *
5         * @author Jeroen Wesbeek
6         * @since 20100422
7         * @package wizard
8         * @see dbnp.studycapturing.TemplateEditorController
9         *
10         * Revision information:
11         * $Rev: 373 $
12         * $Author: duh $
13         * $Date: 2010-04-22 15:07:09 +0000 (do, 22 apr 2010) $
14         */
15%>
16<%@ page contentType="text/html;charset=UTF-8" %>
17<html>
18 <head>
19  <meta name="layout" content="dialog"/>
20  <title>my bla</title>
21 </head>
22 <body>
23 templates for entity: ${entity}<br/>
24
25 <g:if test="${templates}">
26  <ul>
27  <g:each in="${templates}">
28     <li>${it}</li>
29  </g:each>
30  </ul>
31 </g:if>
32 
33 </body>
34</html>
Note: See TracBrowser for help on using the repository browser.