case RecentGame::NORMAL:
                echo 'Normal';
                break;
            case RecentGame::HEROIC:
                echo 'Heroic';
                break;
            case RecentGame::LEGENDARY:
                echo 'Legendary';
                break;
        }
        ?>
<br /></dd>

    <dt>Duration:</dt>
    <dd><?php 
        echo tperiod($game->duration);
        ?>
<br /></dd><?php 
    }
    ?>
    
    <dt>Date/time:</dt>
    <dd><?php 
    echo $game->datetime->format('Y-m-d H:i:s');
    ?>
<br /></dd>
    
    <?php 
    if ($game->game == GAME_HALO_3) {
        ?>
<dt>Team game:</dt>
        
        <dt>Wave Length:</dt>
        <dd><?php 
            echo tperiod($wave->length);
            ?>
<br /></dd>
        
        <dt>Wave Start:</dt>
        <dd><?php 
            echo tperiod($wave->start);
            ?>
<br /></dd>
          
        <dt>Wave End:</dt>
        <dd><?php 
            echo tperiod($wave->end);
            ?>
<br /></dd>
          
        <dt>Score:</dt>
        <dd><?php 
            echo $wave->score;
            ?>
<br /></dd>
        
        <dt>Raw Score:</dt>
        <dd><?php 
            echo $wave->raw_score;
            ?>
<br /></dd>