aboutsummaryrefslogtreecommitdiff
path: root/resources/views/pages/reservations.blade.php
blob: 56c379db6c3ee9db459134b04c1242aa74ee50cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@extends('layouts.app')

@section('title', 'Reservations')

@section('navbar', View::make('inc.special_navbar'))

@section('content')
<div class="table-responsive">
    <table class="table table-striped table-bordered"><!-- table-hover -->
        <thead class="thead-dark">
            <tr><th>ID</th><th>Approved</th><th>Operator Callsign</th><th>QSO</th><th>From</th><th>To</th><th>Frequencies</th><th>Modes</th><th>Special Callsign</th><th>Operator Name</th><th>Operator Email</th><th>Operator Phone</th><th>Actions</th></tr>
        </thead>
        <tbody>
        </tbody>
    </table>
</div>
@endsection()