Skip to content
Snippets Groups Projects
Verified Commit 20ea25fa authored by Gael Yvert's avatar Gael Yvert
Browse files

CSV upload views: warn users about dates format (issue #159)

parent 8ed37e97
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,13 @@
@stop
@section('content')
<div class="page-content browse container-fluid">
<h4 class="alert-warning">
Dates in your csv file must follow the format:
YYYY-mm-dd H:m:s
</h4>
</div>
<br>
<div id="gradient_bg"></div>
......@@ -93,4 +100,4 @@
</form>
@endif
</div>
@endsection
\ No newline at end of file
@endsection
......@@ -9,7 +9,13 @@
@section('content')
<div class="page-content browse container-fluid">
<h4 class="alert-warning">
Dates in your csv file must follow the format:
YYYY-mm-dd H:m:s
</h4>
</div>
<br>
<div class="page-content browse container-fluid">
<form method="post" role="form" class="form-edit-add" enctype="multipart/form-data" action="{{ route('csv.upload.store', ['dataType' => $dataType]) }}">
@csrf
@method('post')
......@@ -34,4 +40,4 @@
</form>
</div>
@endsection
\ No newline at end of file
@endsection
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment