| 2325 | | <input type="radio" name="event.status" value="CONFIRMED"/> |
|---|
| 2326 | | <xsl:if test="form/status = 'CONFIRMED'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> |
|---|
| 2327 | | confirmed |
|---|
| 2328 | | <input type="radio" name="event.status" value="TENTATIVE"/> |
|---|
| 2329 | | <xsl:if test="form/status = 'TENTATIVE'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> |
|---|
| 2330 | | tentative |
|---|
| 2331 | | <input type="radio" name="event.status" value="CANCELLED"/> |
|---|
| 2332 | | <xsl:if test="form/status = 'CANCELLED'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> |
|---|
| 2333 | | cancelled |
|---|
| 2334 | | </xsl:otherwise> |
|---|
| 2335 | | </xsl:choose> |
|---|
| 2336 | | </td> |
|---|
| 2337 | | </tr> |
|---|
| 2338 | | <!-- Transparency --> |
|---|
| 2339 | | <tr> |
|---|
| 2340 | | <td class="fieldname"> |
|---|
| 2341 | | Effects free/busy: |
|---|
| 2342 | | </td> |
|---|
| 2343 | | <td class="fieldval"> |
|---|
| 2344 | | <xsl:choose> |
|---|
| 2345 | | <xsl:when test="/bedework/creating = 'true'"> |
|---|
| 2346 | | <input type="radio" name="newEvent.transparency" value="OPAQUE" checked="checked"/>yes <span class="note">(opaque: event status affects your free/busy)</span><br/> |
|---|
| 2347 | | <input type="radio" name="newEvent.transparency" value="TRANSPARENT"/>no <span class="note">(transparent: event status does not affect your free/busy)</span> |
|---|
| 2348 | | </xsl:when> |
|---|
| 2349 | | <xsl:otherwise> |
|---|
| 2350 | | <xsl:choose> |
|---|
| 2351 | | <xsl:when test="form/transparency = 'TRANSPARENT'"> |
|---|
| 2352 | | <input type="radio" name="event.transparency" value="OPAQUE"/>yes <span class="note">(opaque: event status affects your free/busy)</span><br/> |
|---|
| 2353 | | <input type="radio" name="event.transparency" value="TRANSPARENT" checked="checked"/>no <span class="note">(transparent: event status does not affect your free/busy)</span> |
|---|
| 2354 | | </xsl:when> |
|---|
| 2355 | | <xsl:otherwise> |
|---|
| 2356 | | <input type="radio" name="event.transparency" value="OPAQUE" checked="checked"/>yes <span class="note">(opaque: event status affects your free/busy)</span><br/> |
|---|
| 2357 | | <input type="radio" name="event.transparency" value="TRANSPARENT"/>no <span class="note">(transparent: event status does not affect your free/busy)</span> |
|---|
| 2358 | | </xsl:otherwise> |
|---|
| 2359 | | </xsl:choose> |
|---|
| | 2339 | <input type="radio" name="event.transparency" value="OPAQUE" checked="checked"/>yes <span class="note">(opaque: event status affects your free/busy)</span><br/> |
|---|
| | 2340 | <input type="radio" name="event.transparency" value="TRANSPARENT"/>no <span class="note">(transparent: event status does not affect your free/busy)</span> |
|---|