| 1278 | | <xsl:value-of select="name"/> |
|---|
| | 1278 | <xsl:variable name="curCalName" select="name"/> |
|---|
| | 1279 | <input name="calendar.name" value="{$curCalName}" size="40"/> |
|---|
| | 1280 | </td> |
|---|
| | 1281 | </tr> |
|---|
| | 1282 | <tr> |
|---|
| | 1283 | <th>Summary:</th> |
|---|
| | 1284 | <td> |
|---|
| | 1285 | <xsl:variable name="curCalSummary" select="summary"/> |
|---|
| | 1286 | <input type="text" name="calendar.summary" value="{$curCalSummary}" size="40"/> |
|---|
| | 1287 | </td> |
|---|
| | 1288 | </tr> |
|---|
| | 1289 | <tr> |
|---|
| | 1290 | <th>Description:</th> |
|---|
| | 1291 | <td> |
|---|
| | 1292 | <textarea name="calendar.description" width="60" height="20"> |
|---|
| | 1293 | <xsl:value-of select="desc"/> |
|---|
| | 1294 | </textarea> |
|---|
| | 1295 | </td> |
|---|
| | 1296 | </tr> |
|---|
| | 1297 | <tr> |
|---|
| | 1298 | <th>Calendar/Folder:</th> |
|---|
| | 1299 | <td> |
|---|
| | 1300 | <xsl:choose> |
|---|
| | 1301 | <xsl:when test="calendarCollection='true'"> |
|---|
| | 1302 | <input type="radio" value="true" name="calendarCollection" checked="checked"/> Calendar |
|---|
| | 1303 | <input type="radio" value="false" name="calendarCollection"/> Folder |
|---|
| | 1304 | </xsl:when> |
|---|
| | 1305 | <xsl:otherwise> |
|---|
| | 1306 | <input type="radio" value="true" name="calendarCollection"/> Calendar |
|---|
| | 1307 | <input type="radio" value="false" name="calendarCollection" checked="checked"/> Folder |
|---|
| | 1308 | </xsl:otherwise> |
|---|
| | 1309 | </xsl:choose> |
|---|
| | 1310 | </td> |
|---|
| | 1311 | </tr> |
|---|
| | 1312 | </table> |
|---|
| | 1313 | |
|---|
| | 1314 | <table border="0" width="100%" id="submitTable"> |
|---|
| | 1315 | <tr> |
|---|
| | 1316 | <td> |
|---|
| | 1317 | <input type="submit" name="addCalendar" value="Add Calendar" class="padRight"/> |
|---|
| | 1318 | <input type="submit" name="cancelled" value="Cancel" class="padRight"/> |
|---|
| | 1319 | <input type="reset" value="Clear" class="padRight"/> |
|---|
| | 1320 | </td> |
|---|
| | 1321 | <td align="right"> |
|---|
| | 1322 | <input type="submit" name="delete" value="Delete Calendar"/> |
|---|