phpvms/resources/views/layouts/default/profile/index.blade.php

97 lines
3.6 KiB
PHP
Raw Normal View History

@extends('app')
2018-05-19 03:30:59 +08:00
@section('title', __('common.profile'))
@section('content')
<div class="row profile-page content-center text-color-dark-beige">
<div class="col-md-4" style="text-align:center;">
<div class="photo-container">
@if ($user->avatar == null)
<img src="{{ $user->gravatar(512) }}" style="width: 123px;">
@else
<img src="{{ $user->avatar->url }}" style="width: 123px;">
@endif
</div>
<h3 class="title">{{ $user->name }}</h3>
<h6><span class="flag-icon flag-icon-{{ $user->country }}"></span></h6>
<h6>{{ $user->pilot_id }}</h6>
<h6>{{ $user->rank->name }}</h6>
<p class="description" style="color: #9A9A9A;">
{{ $user->airline->name }}
</p>
</div>
<div class="col-md-8 content-center">
<div class="content">
<div class="social-description">
<h2>{{ $user->flights}}</h2>
2018-05-19 03:18:12 +08:00
<p>{{ trans_choice('common.flight', $user->flights) }}</p>
</div>
<div class="social-description">
<h2>{{ \App\Facades\Utils::minutesToTimeString($user->flight_time, false) }}</h2>
2018-05-22 00:55:40 +08:00
<p>@lang('flights.flighthours')</p>
</div>
@if($user->home_airport)
<div class="social-description">
<h2>{{ $user->home_airport->icao }}</h2>
2018-05-22 00:55:40 +08:00
<p>@lang('airports.home')</p>
</div>
@endif
@if($user->current_airport)
<div class="social-description">
<h2>{{ $user->current_airport->icao }}</h2>
2018-05-22 00:55:40 +08:00
<p>@lang('airports.current')</p>
</div>
@endif
2018-09-05 08:09:33 +08:00
@if(setting('pilots.allow_transfer_hours') === true)
<div class="social-description">
<h2>{{ \App\Facades\Utils::minutesToHours($user->transfer_time) }}h</h2>
<p>@lang('profile.transferhours')</p>
</div>
@endif
</div>
</div>
</div>
2018-01-01 03:08:41 +08:00
{{--
show the details/edit fields only for the currently logged in user
--}}
@if(Auth::check() && $user->id === Auth::user()->id)
<div class="clearfix" style="height: 50px;"></div>
<div class="row">
2018-01-01 03:08:41 +08:00
<div class="col-sm-12">
<div class="text-right">
<a href="{{ route('frontend.profile.regen_apikey') }}" class="btn btn-warning"
2018-05-19 03:52:31 +08:00
onclick="return confirm({{ __('Are you sure? This will reset your API key.') }})">@lang('profile.newapikey')</a>
2018-01-01 03:08:41 +08:00
&nbsp;
<a href="{{ route('frontend.profile.edit', ['id' => $user->id]) }}"
2018-05-19 03:18:12 +08:00
class="btn btn-primary">@lang('common.edit')</a>
2018-01-01 03:08:41 +08:00
</div>
2018-05-19 03:52:31 +08:00
<h3 class="description">@lang('profile.yourprofile')</h3>
<table class="table table-full-width">
<tr>
2018-05-19 03:18:12 +08:00
<td>@lang('common.email')</td>
<td>{{ $user->email }}</td>
</tr>
<tr>
2018-05-19 03:52:31 +08:00
<td>@lang('profile.apikey')&nbsp;&nbsp;<span class="description">(@lang('profile.dontshare'))</span></td>
<td>{{ $user->api_key }}</td>
</tr>
<tr>
2018-05-19 03:18:12 +08:00
<td>@lang('common.timezone')</td>
<td>{{ $user->timezone }}</td>
</tr>
2018-09-20 23:00:23 +08:00
<tr>
<td>@lang('profile.opt-in')</td>
<td>{{ $user->opt_in ? __('common.yes') : __('common.no') }}</td>
</tr>
</table>
</div>
</div>
@endif
@endsection