Last change
on this file since 1467 was
1467,
checked in by work@…, 10 years ago
|
- migrated js, css to gdt
- moved termEditor to gdt
- fixed double imports, wrong usage of javascript (on ready, onPage, etc) in importer
|
-
Property svn:keywords set to
Rev Author Date
|
File size:
1.1 KB
|
Line | |
---|
1 | <% |
---|
2 | /** |
---|
3 | * Failed cells template |
---|
4 | * |
---|
5 | * @author Tjeerd Abma |
---|
6 | * @since 20101103 |
---|
7 | * @package importer |
---|
8 | * |
---|
9 | * Revision information: |
---|
10 | * $Rev: 1467 $ |
---|
11 | * $Author: work@osx.eu $ |
---|
12 | * $Date: 2011-02-01 14:40:17 +0000 (di, 01 feb 2011) $ |
---|
13 | */ |
---|
14 | %> |
---|
15 | <table> |
---|
16 | <tr> |
---|
17 | <th>Column</th><th>Row</th><th>Unknown ontology found</th><th>Corrected ontology</th> |
---|
18 | </tr> |
---|
19 | <g:form name="failedcellsform" action="saveCorrectedCells"> |
---|
20 | <g:each var="item" in="${failedcells}"> <!-- [recordhash, importrecord] --> |
---|
21 | <g:each var="cell" in="${item.value.importcells}"> |
---|
22 | <tr> |
---|
23 | <td>${cell.mappingcolumn.name}</td> |
---|
24 | <td>-</td> |
---|
25 | <td>${cell}</td> |
---|
26 | <td> |
---|
27 | <input type="text" name="cell.index.${cell.getIdentifier()}" rel="ontology-all-name"/> |
---|
28 | <!-- <input type="hidden" name="cell.index.${cell}-concept_id"/> |
---|
29 | <input type="hidden" name="cell.index.${cell}-ontology_id"/> |
---|
30 | <input type="hidden" name="cell.index.${cell}-full_id"/> --> |
---|
31 | </td> |
---|
32 | </tr> |
---|
33 | </g:each> |
---|
34 | </g:each> |
---|
35 | <tr> |
---|
36 | <td colspan="4"> |
---|
37 | <input type="submit" value="Next"> |
---|
38 | </td> |
---|
39 | </tr> |
---|
40 | |
---|
41 | </g:form> |
---|
42 | |
---|
43 | </table> |
---|
44 | |
---|
Note: See
TracBrowser
for help on using the repository browser.