Negative Stimmen abgeschafft.
This commit is contained in:
@@ -103,17 +103,25 @@
|
||||
@if($votes > 0)
|
||||
<h2>Abstimmung</h2>
|
||||
<p>Insgesamt haben <b>{{$votes}}</b> Personen abgestimmt. <b>{{$vposi}}</b> davon waren <i>dafür</i>. @if($uvote[0])
|
||||
Du hast <i>{{ $uvote[1] ? "dafür" : "dagegen"}}</i> gestimmt.
|
||||
Du hast <i>{{ $uvote[1] ? "dafür" : "nicht dafür"}}</i> gestimmt.
|
||||
@endif
|
||||
</p>
|
||||
<dl class="dl-horizontal">
|
||||
<dt>Dafür</dt>
|
||||
<dd>
|
||||
@foreach($pv as $v)
|
||||
<span class="badge">{{$v}}</span>
|
||||
@endforeach
|
||||
</dd>
|
||||
<dt>Nicht dafür</dt>
|
||||
<dd>
|
||||
@foreach($nv as $v)
|
||||
<span class="badge">{{$v}}</span>
|
||||
@endforeach
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
||||
<div class="progress">
|
||||
<div class="progress-bar progress-bar-success tooltip-enable" style="width: {{ $vposi / $votes * 100}}%" data-toggle="tooltip" data-title="{{$pv}}">
|
||||
<span class="sr-only">{{$vposi}} von {{$votes}} (dafür)</span>
|
||||
</div>
|
||||
<div class="progress-bar progress-bar-danger tooltip-enable" style="width: {{ ($votes - $vposi) / $votes * 100}}%" data-toggle="tooltip" data-title="{{$nv}}">
|
||||
<span class="sr-only">{{ $votes - $vposi}} von {{ $votes }} (dagegen)</span>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@if(is_null($film->gesehen) && !is_null(Auth::user()))
|
||||
<div class="container" style="text-align: center">
|
||||
@@ -121,8 +129,8 @@
|
||||
<a class="btn btn-lg btn-success <?php echo $uvote[0] && $uvote[1] ? "disabled" : ""; ?>" href="{{ url('vote', array('yes', Auth::user()->id, $film->id)) }}">
|
||||
<span class="glyphicon glyphicon-thumbs-up"></span> Dafür
|
||||
</a>
|
||||
<a class="btn btn-lg btn-danger <?php echo $uvote[0] && !$uvote[1] ? "disabled" : ""; ?>" href="{{ url('vote', array('no', Auth::user()->id, $film->id)) }}">
|
||||
<span class="glyphicon glyphicon-thumbs-down"></span> Dagegen
|
||||
<a class="btn btn-lg btn-warning <?php echo $uvote[0] && !$uvote[1] ? "disabled" : ""; ?>" href="{{ url('vote', array('no', Auth::user()->id, $film->id)) }}">
|
||||
<span class="glyphicon glyphicon-hand-right"></span> Nicht dafür
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -21,6 +21,7 @@
|
||||
</div>
|
||||
<div class="navbar-collapse collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
<li>{{ HTML::link('beliebt', 'Beliebt') }}</li>
|
||||
<li>{{ HTML::link('vorgeschlagen', 'Vorgeschlagen') }}</li>
|
||||
<li>{{ HTML::link('gesehen', 'Gesehen') }}</li>
|
||||
<li>{{ HTML::link('neu', 'Film vorschlagen')}}
|
||||
|
@@ -8,8 +8,8 @@
|
||||
<div class="panel-body">
|
||||
<img src="{{$image}}" class="pull-left thumbnail" style="max-height: 100px; margin-right: 15px;">
|
||||
<h4>{{$topfilm->name}}</h4>
|
||||
<p><span class="glyphicon glyphicon-thumbs-up"></span> {{$topfilm->upvotes}}
|
||||
<span class="glyphicon glyphicon-thumbs-down"></span> {{$topfilm->downvotes}}</p>
|
||||
<p><span class="glyphicon glyphicon-thumbs-up"></span> {{$topfilm->upvotes}}
|
||||
<span class="glyphicon glyphicon-sort-by-attributes"></span> {{$topfilm->downvotes + $topfilm->upvotes}}</p>
|
||||
@if(!is_null(Auth::user()) && Auth::user()->admin)
|
||||
<a href='{{ url('view-next/' . $topfilm->id) }}' class='btn btn-success btn-xs'>Als nächstes sehen</a>
|
||||
@endif
|
||||
@@ -17,6 +17,7 @@
|
||||
|
||||
<div class="list-group">
|
||||
{{ link_to_route('film', "Filmdetails", array($topfilm->id), array('class' => 'list-group-item'))}}
|
||||
{{ link_to('beliebt', 'Mehr beliebte Filme', array('class' => 'list-group-item')); }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -50,7 +51,8 @@
|
||||
<div class="list-group">
|
||||
@foreach ($vorgeschlagen as $film)
|
||||
<a href="{{ route('film', array($film->id)); }}" class="list-group-item">{{$film->name}} <small>({{ $film->besitzer->name }})</small></a>
|
||||
@endforeach
|
||||
@endforeach
|
||||
{{ link_to('vorgeschlagen', 'Mehr...', array('class' => 'list-group-item')); }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -61,7 +63,8 @@
|
||||
<div class="list-group">
|
||||
@foreach ($gesehen as $film)
|
||||
{{ link_to_route('film', $film->name, array($film->id), array('class' => 'list-group-item'))}}
|
||||
@endforeach
|
||||
@endforeach
|
||||
{{ link_to('gesehen', 'Mehr...', array('class' => 'list-group-item')); }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -1,7 +1,7 @@
|
||||
@extends('hello')
|
||||
|
||||
@section('content')
|
||||
<div class="page-header"><h1>Vorschläge</h1></div>
|
||||
<div class="page-header"><h1>{{$titel}}</h1></div>
|
||||
|
||||
{{ $filme->links() }}
|
||||
|
||||
@@ -27,18 +27,16 @@
|
||||
$vp = $film->upvotes;
|
||||
$np = $film->downvotes;
|
||||
?>
|
||||
<span class="glyphicon glyphicon-thumbs-up"></span> {{ $vp }},
|
||||
<span class="glyphicon glyphicon-thumbs-down"></span> {{ $np }}
|
||||
<span class="glyphicon glyphicon-sort-by-attributes"></span> {{ $vp + $np }}
|
||||
</td>
|
||||
<td>
|
||||
@if(($vp - $np) > 0) <span class="label label-success">+{{$vp - $np}}</span>
|
||||
@elseif(($vp - $np) < 0) <span class="label label-danger">{{$vp - $np}}</span>
|
||||
@else <span class="label label-warning">{{$vp - $np}}</span>
|
||||
@if(($vp) > 0) <span class="label label-default">+{{$vp}}</span>
|
||||
@else <span class="label label-default">0</span>
|
||||
@endif
|
||||
@if($stimme == 1)
|
||||
<span class="label label-success tooltip-enable" data-toggle="tooltip" title="Dafür gestimmt."><span class="glyphicon glyphicon-thumbs-up"></span></span>
|
||||
@elseif($stimme == 0)
|
||||
<span class="label label-danger tooltip-enable" data-toggle="tooltip" title="Dagegen gestimmt."><span class="glyphicon glyphicon-thumbs-down"></span></span>
|
||||
<span class="label label-warning tooltip-enable" data-toggle="tooltip" title="Nicht dafür gestimmt."><span class="glyphicon glyphicon-hand-right"></span></span>
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ \Carbon\Carbon::parse($film->vorgeschlagen)->format('d.m.Y')}}</td>
|
||||
@@ -52,7 +50,7 @@
|
||||
@stop
|
||||
|
||||
@section('title')
|
||||
Vorschläge ~
|
||||
{{$titel}} ~
|
||||
@stop
|
||||
|
||||
@section('script')
|
||||
|
Reference in New Issue
Block a user