summaryrefslogtreecommitdiff
path: root/resources/views
diff options
context:
space:
mode:
authorFbenas <philbeansburton@gmail.com>2020-06-20 21:07:45 +0100
committerFbenas <philbeansburton@gmail.com>2020-06-20 21:07:45 +0100
commit8d6e8b306d7836e4075a13ad98617bfe5afaa1a0 (patch)
tree99c44e28da231cac0d9e513aabc1ee0768972426 /resources/views
parent897b68ac107f2fb0d4dc1d31ce96ce24c862eb27 (diff)
Add new scripts for youtube downloading and syncing with existing matches
Diffstat (limited to 'resources/views')
-rw-r--r--resources/views/index.blade.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php
index cde358d..0500e96 100644
--- a/resources/views/index.blade.php
+++ b/resources/views/index.blade.php
@@ -23,6 +23,7 @@
<th scope="col">Venue</th>
<th scope="col">Referee</th>
<th scope="col">Date</th>
+ <th scope="col">Video</th>
</tr>
</thead>
@@ -37,6 +38,11 @@
<td>{{ $match->getDisplayName() }}</td>
<td>{{ $match->referee }}</td>
<td>{{ $match->getDisplayDate() }}</td>
+ @if ($match->getVideoUrl())
+ <td><a href="{{ $match->getVideoUrl() }}">Play</a></td>
+ @else
+ <td></td>
+ @endif
</tr>
@endforeach
</tbody>