Last change
on this file since 2248 was
1771,
checked in by robert@…, 12 years ago
|
Fixed bug with stylesheet in template importer
|
-
Property svn:keywords set to
Rev Author Date
|
File size:
660 bytes
|
Line | |
---|
1 | <%@ page contentType="text/html;charset=UTF-8" %> |
---|
2 | |
---|
3 | <html> |
---|
4 | <head> |
---|
5 | <meta name="layout" content="main"/> |
---|
6 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
7 | <link rel="stylesheet" href="${resource(dir: 'css', file: 'templateImporter.css')}" /> |
---|
8 | <title>Imported templates</title> |
---|
9 | </head> |
---|
10 | <body> |
---|
11 | <h1>Templates imported</h1> |
---|
12 | <g:if test="${messages.size() == 0}"> |
---|
13 | No templates imported. |
---|
14 | </g:if> |
---|
15 | <g:else> |
---|
16 | <ul> |
---|
17 | <g:each in="${messages}" var="message" status="i"> |
---|
18 | <li>${message}</li> |
---|
19 | </g:each> |
---|
20 | </ul> |
---|
21 | </g:else> |
---|
22 | |
---|
23 | <p><a href="<g:createLink action="importTemplate" />">Import other templates</a></p> |
---|
24 | </body> |
---|
25 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.