37 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php use Enums\SubmissionStatus; ?>
 | 
						|
 | 
						|
<div role="region" aria-labelledby="details-caption" tabindex="0">
 | 
						|
    <table>
 | 
						|
        <caption id="details-caption">Submission Details</caption>
 | 
						|
    <tbody>
 | 
						|
        <tr>
 | 
						|
            <th scope="row" colspan="2">ID</th>
 | 
						|
            <td><?= $submission->id ?></td>
 | 
						|
        </tr>
 | 
						|
        <tr>
 | 
						|
            <th scope="row" colspan="2">Title</th>
 | 
						|
            <td><a href="/docs/<?= $submission->hash ?>"><?= $submission->title ?></a></td>
 | 
						|
        </tr>
 | 
						|
        <?php if ($game->status_id === STATUS_REVIEW) { ?>
 | 
						|
        <tr>
 | 
						|
            <th scope="row" colspan="2">Review Status</th>
 | 
						|
            <td><?= SubmissionStatus::tryFrom($submission->status)->name ??
 | 
						|
                "N/A" ?></td>
 | 
						|
        </tr>
 | 
						|
        <?php } ?>
 | 
						|
        <tr>
 | 
						|
            <th scope="row" rowspan="3">Rankings</th>
 | 
						|
            <th scope="row">Round One</th>
 | 
						|
            <td><?= $submission->rank_round_1 ?? "N/A" ?></td>
 | 
						|
        </tr>
 | 
						|
        <tr>
 | 
						|
            <th scope="row">Round Two</th>
 | 
						|
            <td><?= $submission->rank_round_2 ?? "N/A" ?></td>
 | 
						|
        </tr>
 | 
						|
        <tr>
 | 
						|
            <th scope="row">Round Three</th>
 | 
						|
            <td><?= $submission->rank_round_3 ?? "N/A" ?></td>
 | 
						|
        </tr>
 | 
						|
    </tbody>
 | 
						|
    </table>
 | 
						|
</div>
 |