mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update account views
This commit is contained in:
parent
7baf0839e6
commit
d68ed14e86
2 changed files with 26 additions and 12 deletions
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div>
|
<div>
|
||||||
|
<div class="bg-white py-4">
|
||||||
|
<div class="container">
|
||||||
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
|
<div></div>
|
||||||
|
<a href="/account/activity" class="cursor-pointer font-weight-bold text-primary">Notifications</a>
|
||||||
|
<a href="/account/follow-requests" class="cursor-pointer font-weight-bold text-dark">Follow Requests</a>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<activity-component></activity-component>
|
<activity-component></activity-component>
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
|
@ -1,20 +1,19 @@
|
||||||
@extends('layouts.app')
|
@extends('layouts.app')
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
<div class="bg-white py-4">
|
||||||
|
<div class="container">
|
||||||
|
<div class="d-flex justify-content-between align-items-center">
|
||||||
|
<div></div>
|
||||||
|
<a href="/account/activity" class="cursor-pointer font-weight-bold text-dark">Notifications</a>
|
||||||
|
<a href="/account/follow-requests" class="cursor-pointer font-weight-bold text-primary">Follow Requests</a>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="container notification-page" style="min-height: 60vh;">
|
<div class="container notification-page" style="min-height: 60vh;">
|
||||||
<div class="col-12 col-md-8 offset-md-2">
|
<div class="col-12 col-md-8 offset-md-2">
|
||||||
<div class="card mt-3">
|
@if($followers->count() > 0)
|
||||||
<div class="card-body p-0">
|
|
||||||
<ul class="nav nav-pills d-flex text-center">
|
|
||||||
<li class="nav-item flex-fill">
|
|
||||||
<a class="nav-link font-weight-bold text-uppercase" href="{{route('notifications')}}">My Notifications</a>
|
|
||||||
</li>
|
|
||||||
<li class="nav-item flex-fill">
|
|
||||||
<a class="nav-link font-weight-bold text-uppercase active" href="{{route('follow-requests')}}">Follow Requests</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<ul class="list-group">
|
<ul class="list-group">
|
||||||
@foreach($followers as $follow)
|
@foreach($followers as $follow)
|
||||||
<li class="list-group-item notification border-0">
|
<li class="list-group-item notification border-0">
|
||||||
|
@ -38,6 +37,11 @@
|
||||||
<div class="d-flex justify-content-center my-4">
|
<div class="d-flex justify-content-center my-4">
|
||||||
{{$followers->links()}}
|
{{$followers->links()}}
|
||||||
</div>
|
</div>
|
||||||
|
@else
|
||||||
|
<div class="text-center pt-5">
|
||||||
|
<p class="font-weight-bold text-muted">You don't have any follow requests</p>
|
||||||
|
</div>
|
||||||
|
@endif
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue