Changeset 681
- Timestamp:
- 2008-10-07 13:18:27 (5 years ago)
- Location:
- tupper/main/src/main/kauri/site/pages/planning/tasks
- Files:
-
- 2 edited
-
{id}-edit.html.xml (modified) (4 diffs)
-
{id}.html.xml (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tupper/main/src/main/kauri/site/pages/planning/tasks/{id}-edit.html.xml
r673 r681 1 <html xmlns:ktl="http://kauriproject.org/template"> 1 <?xml version="1.0"?> 2 <html xmlns:t="http://kauriproject.org/template"> 3 4 <t:variable name="task" src="km:/router/data/planning/tasks/${request.attributes.id}.json"/> 5 <t:variable name="events" value="${null}"/> 6 2 7 <head> 3 8 <title>Edit task</title> … … 6 11 <script type="text/javascript" src="${publicUri('km:/jquery-ui/ui/jquery.ui.all.js')}"></script> 7 12 <script type="text/javascript" src="${publicUri('km:/forms/kauri-forms.js')}"></script> 8 <link href="../resources/css/screen.css" rel="stylesheet" type="text/css"></link> 9 <link href="../resources/css/print.css" rel="stylesheet" type="text/css"></link> 13 14 <link href="${publicUri('km:/router/resources/css/screen.css')}" rel="stylesheet" type="text/css"></link> 15 <link href="${publicUri('km:/router/resources/css/print.css')}" rel="stylesheet" type="text/css"></link> 10 16 <link rel="stylesheet" type="text/css" href="${publicUri('km:/jquery-ui/themes/ui.datepicker.css')}"></link> 11 17 <link rel="stylesheet" type="text/css" href="${publicUri('km:/forms/css/datepicker.css')}"></link> … … 161 167 <th>Actions</th> 162 168 </tr> 163 < ktl:forEach var="event" in="${events}">169 <t:forEach var="event" in="${events}"> 164 170 <tr> 165 171 <td>$g{event.get('timestamp')}</td> … … 169 175 <td>Edit Delete</td> 170 176 </tr> 171 </ ktl:forEach>177 </t:forEach> 172 178 </table> 173 179 </div> -
tupper/main/src/main/kauri/site/pages/planning/tasks/{id}.html.xml
r673 r681 1 <html xmlns:ktl="http://kauriproject.org/template"> 1 <?xml version="1.0"?> 2 <html xmlns:t="http://kauriproject.org/template"> 3 4 <t:variable name="task" src="km:/router/data/planning/tasks/${request.attributes.id}.json"/> 5 <t:variable name="events" value="${null}"/> 6 2 7 <head> 3 8 <title>View task</title> … … 6 11 <script type="text/javascript" src="${publicUri('km:/jquery-ui/ui/jquery.ui.all.js')}"></script> 7 12 <script type="text/javascript" src="${publicUri('km:/forms/kauri-forms.js')}"></script> 8 <link href=" ../resources/css/screen.css" rel="stylesheet" type="text/css"></link>9 <link href=" ../resources/css/print.css" rel="stylesheet" type="text/css"></link>13 <link href="${publicUri('km:/router/resources/css/screen.css')}" rel="stylesheet" type="text/css"></link> 14 <link href="${publicUri('km:/router/resources/css/print.css')}" rel="stylesheet" type="text/css"></link> 10 15 <!--[if IE]><link rel="stylesheet" href="/resources/css/ie.css" type="text/css" media="screen, projection"><![endif]--> 11 16 </head> … … 60 65 61 66 <dl> 62 < ktl:forEach var="subtask" in="$g{task.get('subtasks')}">67 <t:forEach var="subtask" in="$g{task.get('subtasks')}"> 63 68 64 69 <dt>$g{subtask.get('label')}</dt> 65 70 <dd>$g{subtask.get('description')}</dd> 66 71 67 </ ktl:forEach>72 </t:forEach> 68 73 </dl> 69 74 … … 76 81 <th>Description</th> 77 82 </tr> 78 < ktl:forEach var="event" in="${events}">83 <t:forEach var="event" in="${events}"> 79 84 <tr> 80 85 <td>$g{event.get('timestamp')}</td> … … 84 89 85 90 </tr> 86 </ ktl:forEach>91 </t:forEach> 87 92 </table> 88 93 </div>
Note: See TracChangeset
for help on using the changeset viewer.