?>
" class="notification-check"><span class="bp-screen-reader-text"><?php 
    /* translators: accessibility text */
    _e('Select this notification', 'buddypress');
    ?>
</span></label></td>
					<td class="notification-description"><?php 
    bp_the_notification_description();
    ?>
</td>
					<td class="notification-since"><?php 
    bp_the_notification_time_since();
    ?>
</td>
					<td class="notification-actions"><?php 
    bp_the_notification_action_links();
    ?>
</td>
				</tr>

			<?php 
}
?>

		</tbody>
	</table>

	<div class="notifications-options-nav">
		<?php 
bp_notifications_bulk_management_dropdown();
?>
 * Version 2.0
 * 11-15-2014
 */
?>

<ol id="notifications-list" class="directory-list" role="main">
	<?php 
while (bp_the_notifications()) {
    bp_the_notification();
    ?>
	<li class="notification">
		<div class="notification-content">
			<?php 
    bp_the_notification_description();
    ?>
			<span class="activity"><?php 
    bp_the_notification_time_since();
    ?>
</span>
		</div>
		<div class="notification-actions">
			<?php 
    bp_the_notification_action_links(array('sep' => '|'));
    ?>
		</div>
	</li>
	<?php 
}
?>
</ol>