Skip to content

Commit

Permalink
fix(deps): upgrade notifications group card
Browse files Browse the repository at this point in the history
  • Loading branch information
warlof committed Oct 17, 2019
1 parent 5be053a commit 18f8eab
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions src/resources/views/groups/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

@section('left')

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{ trans_choice('notifications::notifications.integration', 2) }}</h3>
<div class="card">
<div class="card-header">
<h3 class="card-title">{{ trans_choice('notifications::notifications.integration', 2) }}</h3>
</div>
<div class="panel-body">
<div class="card-body">

<form role="form" action="{{ route('notifications.groups.edit.integration.add') }}" method="post">
{{ csrf_field() }}
Expand Down Expand Up @@ -42,13 +42,13 @@
</div>
</form>

<table class="table compact table-condensed table-hover table-responsive">
<table class="table compact table-condensed table-hover">
<thead>
<tr>
<th>{{ trans('notifications::notifications.name') }}</th>
<th>{{ trans('notifications::notifications.type') }}</th>
<th></th>
</tr>
<tr>
<th>{{ trans('notifications::notifications.name') }}</th>
<th>{{ trans('notifications::notifications.type') }}</th>
<th></th>
</tr>
</thead>
<tbody>

Expand All @@ -71,7 +71,7 @@ class="btn btn-xs btn-danger pull-right">
</table>

</div>
<div class="panel-footer">
<div class="card-footer">
{{ count($group->integrations) }}
{{ trans_choice('notifications::notifications.integration', count($group->integrations)) }}
</div>
Expand All @@ -82,11 +82,11 @@ class="btn btn-xs btn-danger pull-right">

@section('center')

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{ trans_choice('notifications::notifications.alert', 2) }}</h3>
<div class="card">
<div class="card-header">
<h3 class="card-title">{{ trans_choice('notifications::notifications.alert', 2) }}</h3>
</div>
<div class="panel-body">
<div class="card-body">

<form role="form" action="{{ route('notifications.groups.edit.alert.add') }}" method="post">
{{ csrf_field() }}
Expand Down Expand Up @@ -120,11 +120,11 @@ class="btn btn-xs btn-danger pull-right">
</div>
</form>

<table class="table compact table-condensed table-hover table-responsive">
<table class="table compact table-condensed table-hover">
<thead>
<tr>
<th>{{ trans('notifications::notifications.name') }}</th>
</tr>
<tr>
<th>{{ trans('notifications::notifications.name') }}</th>
</tr>
</thead>
<tbody>

Expand All @@ -148,7 +148,7 @@ class="btn btn-xs btn-danger pull-right">
</table>

</div>
<div class="panel-footer">
<div class="card-footer">
{{ count($group->alerts) }}
{{ trans_choice('notifications::notifications.alert', count($group->alerts)) }}
<span class="pull-right">{{ ucfirst($group->type) }}</span>
Expand All @@ -163,11 +163,11 @@ class="btn btn-xs btn-danger pull-right">
{{-- only show affiliations for char & corp types --}}
@if($group->type === 'char' || $group->type == 'corp')

<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{{ trans_choice('notifications::notifications.affiliation', 2) }}</h3>
<div class="card">
<div class="card-header">
<h3 class="card-title">{{ trans_choice('notifications::notifications.affiliation', 2) }}</h3>
</div>
<div class="panel-body">
<div class="card-body">

<form role="form" action="{{ route('notifications.groups.edit.affiliations.add') }}" method="post">
{{ csrf_field() }}
Expand Down

0 comments on commit 18f8eab

Please sign in to comment.