| 3302 | | <xsl:if test="/bedework/attendees/attendee"> |
|---|
| 3303 | | <table id="attendees" class="widget" cellspacing="0"> |
|---|
| 3304 | | <tr> |
|---|
| 3305 | | <th colspan="4">Attendees</th> |
|---|
| 3306 | | </tr> |
|---|
| 3307 | | <!--<tr> |
|---|
| 3308 | | <td>attendee</td> |
|---|
| 3309 | | <td>role</td> |
|---|
| 3310 | | <td>status</td> |
|---|
| 3311 | | </tr>--> |
|---|
| 3312 | | <xsl:for-each select="/bedework/attendees/attendee"> |
|---|
| 3313 | | <xsl:sort select="cn" order="ascending" case-order="upper-first"/> |
|---|
| 3314 | | <xsl:sort select="attendeeUri" order="ascending" case-order="upper-first"/> |
|---|
| 3315 | | <xsl:variable name="attendeeUri" select="attendeeUri"/> |
|---|
| 3316 | | <tr> |
|---|
| 3317 | | <td class="trash"> |
|---|
| 3318 | | <a href="{$event-attendeesForEvent}&uri={$attendeeUri}&attendee=true&delete=true" title="remove"> |
|---|
| 3319 | | <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="remove"/> |
|---|
| 3320 | | </a> |
|---|
| 3321 | | </td> |
|---|
| 3322 | | <td> |
|---|
| 3323 | | <a href="{$attendeeUri}"> |
|---|
| 3324 | | <xsl:choose> |
|---|
| 3325 | | <xsl:when test="cn != ''"> |
|---|
| 3326 | | <xsl:value-of select="cn"/> |
|---|
| 3327 | | </xsl:when> |
|---|
| 3328 | | <xsl:otherwise> |
|---|
| 3329 | | <xsl:value-of select="attendeeUri"/> |
|---|
| 3330 | | </xsl:otherwise> |
|---|
| 3331 | | </xsl:choose> |
|---|
| 3332 | | </a> |
|---|
| 3333 | | </td> |
|---|
| 3334 | | <td class="role"> |
|---|
| 3335 | | <xsl:value-of select="role"/> |
|---|
| 3336 | | </td> |
|---|
| 3337 | | <td class="status"> |
|---|
| 3338 | | <xsl:value-of select="partstat"/> |
|---|
| 3339 | | </td> |
|---|
| 3340 | | </tr> |
|---|
| 3341 | | </xsl:for-each> |
|---|
| 3342 | | </table> |
|---|
| 3343 | | </xsl:if> |
|---|
| 3344 | | |
|---|
| 3345 | | <xsl:if test="/bedework/recipients/recipient"> |
|---|
| 3346 | | <table id="recipients" class="widget" cellspacing="0"> |
|---|
| 3347 | | <tr> |
|---|
| 3348 | | <th colspan="2">Recipients</th> |
|---|
| 3349 | | </tr> |
|---|
| 3350 | | <xsl:for-each select="/bedework/recipients/recipient"> |
|---|
| 3351 | | <xsl:variable name="recipientUri" select="."/> |
|---|
| 3352 | | <tr> |
|---|
| 3353 | | <td class="trash"> |
|---|
| 3354 | | <a href="{$event-attendeesForEvent}&uri={$recipientUri}&recipient=true&delete=true" title="remove"> |
|---|
| 3355 | | <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="remove"/> |
|---|
| 3356 | | </a> |
|---|
| 3357 | | </td> |
|---|
| 3358 | | <td> |
|---|
| 3359 | | <a href="{$recipientUri}"> |
|---|
| 3360 | | <xsl:value-of select="."/> |
|---|
| 3361 | | </a> |
|---|
| 3362 | | </td> |
|---|
| 3363 | | </tr> |
|---|
| 3364 | | </xsl:for-each> |
|---|
| 3365 | | </table> |
|---|
| 3366 | | </xsl:if> |
|---|
| 3367 | | |
|---|
| | 3328 | |
|---|
| | 3329 | <xsl:if test="/bedework/attendees/attendee"> |
|---|
| | 3330 | <table id="attendees" class="widget" cellspacing="0"> |
|---|
| | 3331 | <tr> |
|---|
| | 3332 | <th colspan="4">Attendees</th> |
|---|
| | 3333 | </tr> |
|---|
| | 3334 | <tr class="subHead"> |
|---|
| | 3335 | <td></td> |
|---|
| | 3336 | <td>attendee</td> |
|---|
| | 3337 | <td>role</td> |
|---|
| | 3338 | <td>status</td> |
|---|
| | 3339 | </tr> |
|---|
| | 3340 | <xsl:for-each select="/bedework/attendees/attendee"> |
|---|
| | 3341 | <xsl:sort select="cn" order="ascending" case-order="upper-first"/> |
|---|
| | 3342 | <xsl:sort select="attendeeUri" order="ascending" case-order="upper-first"/> |
|---|
| | 3343 | <xsl:variable name="attendeeUri" select="attendeeUri"/> |
|---|
| | 3344 | <tr> |
|---|
| | 3345 | <td class="trash"> |
|---|
| | 3346 | <a href="{$event-attendeesForEvent}&uri={$attendeeUri}&attendee=true&delete=true" title="remove"> |
|---|
| | 3347 | <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="remove"/> |
|---|
| | 3348 | </a> |
|---|
| | 3349 | </td> |
|---|
| | 3350 | <td> |
|---|
| | 3351 | <a href="{$attendeeUri}"> |
|---|
| | 3352 | <xsl:choose> |
|---|
| | 3353 | <xsl:when test="cn != ''"> |
|---|
| | 3354 | <xsl:value-of select="cn"/> |
|---|
| | 3355 | </xsl:when> |
|---|
| | 3356 | <xsl:otherwise> |
|---|
| | 3357 | <xsl:value-of select="attendeeUri"/> |
|---|
| | 3358 | </xsl:otherwise> |
|---|
| | 3359 | </xsl:choose> |
|---|
| | 3360 | </a> |
|---|
| | 3361 | </td> |
|---|
| | 3362 | <td class="role"> |
|---|
| | 3363 | <xsl:value-of select="role"/> |
|---|
| | 3364 | </td> |
|---|
| | 3365 | <td class="status"> |
|---|
| | 3366 | <xsl:value-of select="partstat"/> |
|---|
| | 3367 | </td> |
|---|
| | 3368 | </tr> |
|---|
| | 3369 | </xsl:for-each> |
|---|
| | 3370 | </table> |
|---|
| | 3371 | </xsl:if> |
|---|
| | 3372 | |
|---|
| | 3373 | <xsl:if test="/bedework/recipients/recipient"> |
|---|
| | 3374 | <table id="recipients" class="widget" cellspacing="0"> |
|---|
| | 3375 | <tr> |
|---|
| | 3376 | <th colspan="2">Recipients</th> |
|---|
| | 3377 | </tr> |
|---|
| | 3378 | <xsl:for-each select="/bedework/recipients/recipient"> |
|---|
| | 3379 | <xsl:variable name="recipientUri" select="."/> |
|---|
| | 3380 | <tr> |
|---|
| | 3381 | <td class="trash"> |
|---|
| | 3382 | <a href="{$event-attendeesForEvent}&uri={$recipientUri}&recipient=true&delete=true" title="remove"> |
|---|
| | 3383 | <img src="{$resourcesRoot}/resources/trashIcon.gif" width="13" height="13" border="0" alt="remove"/> |
|---|
| | 3384 | </a> |
|---|
| | 3385 | </td> |
|---|
| | 3386 | <td> |
|---|
| | 3387 | <a href="{$recipientUri}"> |
|---|
| | 3388 | <xsl:value-of select="."/> |
|---|
| | 3389 | </a> |
|---|
| | 3390 | </td> |
|---|
| | 3391 | </tr> |
|---|
| | 3392 | </xsl:for-each> |
|---|
| | 3393 | </table> |
|---|
| | 3394 | </xsl:if> |
|---|