diff options
author | Fbenas <philbeansburton@gmail.com> | 2020-06-20 21:07:45 +0100 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2020-06-20 21:07:45 +0100 |
commit | 8d6e8b306d7836e4075a13ad98617bfe5afaa1a0 (patch) | |
tree | 99c44e28da231cac0d9e513aabc1ee0768972426 /resources | |
parent | 897b68ac107f2fb0d4dc1d31ce96ce24c862eb27 (diff) |
Add new scripts for youtube downloading and syncing with existing matches
Diffstat (limited to 'resources')
-rw-r--r-- | resources/views/index.blade.php | 6 |
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> |