diff options
Diffstat (limited to 'resources/js/components')
-rw-r--r-- | resources/js/components/activities.vue | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/resources/js/components/activities.vue b/resources/js/components/activities.vue index 48e54f5..976516f 100644 --- a/resources/js/components/activities.vue +++ b/resources/js/components/activities.vue @@ -1,9 +1,31 @@ <template> - + <div> + <call-sign-filter></call-sign-filter> + + <div class="table-responsive mt-2"> + <table class="table table-striped table-bordered" style="white-space:nowrap;"> + <thead class="thead-dark"> + <tr> + <th>Operator</th> + <th>From</th> + <th>To</th> + <th>Special Callsign</th> + <th>Frequencies</th> + <th>Modes</th> + <th>QSO</th> + </tr> + </thead> + <tbody> + </tbody> + </table> + </div> + </div> </template> <script> +import callSignFilter from './call-sign-filter.vue'; + export default { - + components: { callSignFilter } } </script> |