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

@section('content')
@if (1==2)
<div class="table-responsive">
    <table class="table table-striped table-bordered"><!-- table-hover -->
        <thead class="thead-dark">
            <tr><th>Operator</th><th>From</th><th>To</th><th>Special Callsign</th><th>Frequencies</th><th>QSO</th></tr>
        </thead>
        <tbody>
        </tbody>
    </table>
</div>
@else
<p>There are currently no approved activities.</p>
@endif
@endsection()