source: trunk/grails-app/views/taskRecurringScheduleDetailed/create.gsp @ 135

Last change on this file since 135 was 135, checked in by gav, 15 years ago

Protect taskRecurringSchedule from creating if one already exists.
Turn some taskInstance text into links.
Work on taskRecurringSchedule detail and creation.

File size: 4.0 KB
Line 
1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
7        <title>Create TaskRecurringSchedule</title>         
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span>
12            <span class="menuButton"><g:link class="list" action="list">TaskRecurringSchedule List</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Create TaskRecurringSchedule</h1>
16            <g:if test="${flash.message}">
17            <div class="message">${flash.message}</div>
18            </g:if>
19            <g:hasErrors bean="${taskRecurringScheduleInstance}">
20            <div class="errors">
21                <g:renderErrors bean="${taskRecurringScheduleInstance}" as="list" />
22            </div>
23            </g:hasErrors>
24            <g:form action="save" method="post" >
25                <g:hiddenField name="task.id" value="${taskRecurringScheduleInstance.task.id}" />
26                <div class="dialog">
27                    <table>
28                        <tbody>
29
30                            <tr class="prop">
31                                <td valign="top" class="name">
32                                    <label for="recForTask">Recurring Schedule for Task:</label>
33                                </td>
34                                                                <td valign="top" name="recForTask" class="value">
35                                                                        <g:link controller="taskDetailed" action="show" id="${taskRecurringScheduleInstance?.task?.id}">${taskRecurringScheduleInstance?.task?.encodeAsHTML()}</g:link>
36                                                                </td>
37                            </tr>
38                           
39                            <tr class="prop">
40                                <td valign="top" class="name">
41                                    <label for="startDate">Start Date:</label>
42                                </td>
43                                <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'startDate','errors')}">
44                                    <g:datePicker name="startDate" value="${taskRecurringScheduleInstance?.startDate}"  precision="day"></g:datePicker>
45                                </td>
46                            </tr>   
47                     
48                            <tr class="prop">
49                                <td valign="top" class="name">
50                                    <label for="recurEvery">Recur Every:</label>
51                                </td>
52                                <td valign="top" class="value" >
53                                    <input type="text" class="time ${hasErrors(bean:taskRecurringScheduleInstance,field:'recurEvery','errors')}"
54                                                                                id="recurEvery" name="recurEvery" value="${fieldValue(bean:taskRecurringScheduleInstance,field:'recurEvery')}" />
55                                    <g:select optionKey="id" from="${Period.list()}" name="period.id" value="${taskRecurringScheduleInstance?.period?.id}" ></g:select>
56                                </td>
57                            </tr>
58                       
59                            <tr class="prop">
60                                <td valign="top" class="name">
61                                    <label for="isEnabled">Is Enabled:</label>
62                                </td>
63                                <td valign="top" class="value ${hasErrors(bean:taskRecurringScheduleInstance,field:'isEnabled','errors')}">
64                                    <g:checkBox name="isEnabled" value="${taskRecurringScheduleInstance?.isEnabled}" ></g:checkBox>
65                                </td>
66                            </tr>
67                       
68                        </tbody>
69                    </table>
70                </div>
71                <div class="buttons">
72                    <span class="button"><input class="save" type="submit" value="Create" /></span>
73                </div>
74            </g:form>
75        </div>
76    </body>
77</html>
Note: See TracBrowser for help on using the repository browser.