From c7b366fc131cb2dcc30809dcf86fca7b09f38583 Mon Sep 17 00:00:00 2001 From: Aria <aria@suma-ev.de> Date: Tue, 15 Aug 2017 11:38:18 +0200 Subject: [PATCH] select tag eingefuegt im blade template --- resources/views/languages/synoptic.blade.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/resources/views/languages/synoptic.blade.php b/resources/views/languages/synoptic.blade.php index 0188c22a9..7658718db 100644 --- a/resources/views/languages/synoptic.blade.php +++ b/resources/views/languages/synoptic.blade.php @@ -13,10 +13,16 @@ </div> --> */?> - <h2>{{$filename}}</h2> + <h2>Aktuelle Datei: {{$filename}}</h2> <form id="submit" method="POST"> <input type="hidden" name="filename" value="{{$filename}}" /> </form> + <p style="display: inline;"> Andere Datei auswählen: </p> + <select name="chooseFile" form="submit" type="submit"> + @foreach($otherFiles as $otherFile) + <option value={{$otherFile}}>{{ $otherFile }}</option> + @endforeach + </select> <table class="table"> <thead> <tr> -- GitLab