This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/app/views/suggest.blade.php
2016-05-20 05:47:41 +02:00

67 lines
1.8 KiB
PHP

@extends('hello')
@section('content')
<div class="page-header"><h1>{{$titel}}</h1></div>
{{ $filme->links() }}
<table class="table">
<tr>
<th>Titel</th>
<th colspan="2">Stimmen</th>
<th>Vorgeschlagen am</th>
<th>Vorgeschlagen von</th>
</tr>
@foreach($filme as $film)
<tr>
<td>
<?php
$stimme = 2;
if(!is_null(Auth::user()) && Vote::where('film', $film->id)->where('user', Auth::user()->id)->count())
$stimme = Vote::where('film', $film->id)->where('user', Auth::user()->id)->first()->stimme;
?>
{{ HTML::link('film/' . $film->id, $film->name) }}
</td>
<td>
<?php
$vp = $film->upvotes;
$np = $film->downvotes;
?>
<span class="glyphicon glyphicon-transfer"></span>&nbsp;{{ !is_null($np) ? $vp + $np : $film->votes }}
</td>
<td>
@if(($vp) > 0) <span class="label label-default">+{{$vp}}</span>
@else <span class="label label-default">0</span>
@endif
@if($stimme == 1)
&nbsp;<span class="label label-success tooltip-enable" data-toggle="tooltip" title="Daf&uuml;r gestimmt."><span class="glyphicon glyphicon-thumbs-up"></span></span>
@elseif($stimme == 0)
&nbsp;<span class="label label-default tooltip-enable" data-toggle="tooltip" title="Nicht daf&uuml;r gestimmt."><span class="glyphicon glyphicon-hand-right"></span></span>
@endif
</td>
<td>{{ \Carbon\Carbon::parse($film->vorgeschlagen)->format('d.m.Y')}}</td>
<td>
<span class="badge">
<img class="img-circle" src="{{ Film::find($film->id)->besitzer->getAvatar() }}" width="20"> {{Film::find($film->id)->besitzer->name}}
</span>
</td>
</tr>
@endforeach
</table>
{{ $filme->links() }}
@stop
@section('title')
{{$titel}} ~
@stop
@section('script')
<script type="text/javascript">
$(function() {
$('.tooltip-enable').tooltip({ html: true, placement: "bottom" });
});
</script>
@stop