A modification based on the following thread:
http://php.brickhost.com/forums/index.php?topic=11079.0In the "Application Management... Reservations" page, or the "Responsibilities... Resource Reservations" page I have added columns to display the Title and Description for the reservations that show up in the list.
/phpsch/tpl/Admin/manage_reservations.tpl (based on v2.1.3)
<table class="list" id="reservationTable">
<tr>
<th class="id"> </th>
<th>{translate key='User'}</th>
{* Begin Change *}
<th>Title</th>
<th>Description</th>
{* End Change *}
<th>{translate key='Resource'}</th>
<th>{translate key='BeginDate'}</th>
<th>{translate key='EndDate'}</th>
<th>{translate key='Created'}</th>
<th>{translate key='LastModified'}</th>
<th>{translate key='ReferenceNumber'}</th>
<th>{translate key='Delete'}</th>
<th>{translate key='Approve'}</th>
</tr>
{foreach from=$reservations item=reservation}
{cycle values='row0,row1' assign=rowCss}
{if $reservation->RequiresApproval}
{assign var=rowCss value='pending'}
{/if}
<tr class="{$rowCss} editable">
<td class="id">{$reservation->ReservationId}</td>
<td>{fullname first=$reservation->FirstName last=$reservation->LastName}</td>
{* Begin Change *}
<td>{$reservation->Title}</td>
<td>{$reservation->Description}</td>
{* End Change *}
<td>{$reservation->ResourceName}</td>
<td>{formatdate date=$reservation->StartDate timezone=$Timezone key=res_popup}</td>
<td>{formatdate date=$reservation->EndDate timezone=$Timezone key=res_popup}</td>
<td>{formatdate date=$reservation->CreatedDate timezone=$Timezone key=general_datetime}</td>
<td>{formatdate date=$reservation->ModifiedDate timezone=$Timezone key=general_datetime}</td>
<td class="referenceNumber">{$reservation->ReferenceNumber}</td>
<td align="center"><a href="#" class="update delete">{html_image src='cross-button.png'}</a></td>
<td align="center">
{if $reservation->RequiresApproval}
<a href="#" class="update approve">{html_image src='tick-button.png'}</a>
{else}
-
{/if}
</td>
</tr>
{/foreach}
</table>