mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Add Import Help Center page
This commit is contained in:
parent
7e0335b246
commit
9f3e809f26
3 changed files with 123 additions and 7 deletions
|
@ -254,6 +254,22 @@
|
|||
</div>
|
||||
</a>
|
||||
</div> --}}
|
||||
<div class="col-12 col-md-6 mb-3">
|
||||
<a href="{{route('help.import')}}" class="text-decoration-none">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<p class="py-1 text-center">
|
||||
<i class="far fa-file-import text-lighter fa-2x"></i>
|
||||
</p>
|
||||
<p class="text-center text-muted font-weight-bold h4 mb-0">Import</p>
|
||||
<div class="text-center pt-3">
|
||||
<p class="small text-dark font-weight-bold mb-0">How to Import from Instagram</p>
|
||||
<p class="small text-dark font-weight-bold mb-0">Troubleshooting Imports</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
|
94
resources/views/site/help/import.blade.php
Normal file
94
resources/views/site/help/import.blade.php
Normal file
|
@ -0,0 +1,94 @@
|
|||
@extends('site.help.partial.template', ['breadcrumb'=>'Import'])
|
||||
|
||||
@section('section')
|
||||
|
||||
<div class="title">
|
||||
<h3 class="font-weight-bold">Import</h3>
|
||||
</div>
|
||||
<hr>
|
||||
<p class="lead py-3">With the Import from Instagram feature, you can seamlessly transfer your photos, captions, and even hashtags from your Instagram account to Pixelfed, ensuring a smooth transition without losing your cherished memories or creative expressions.</p>
|
||||
|
||||
<hr class="mb-4" />
|
||||
|
||||
<p class="text-center font-weight-bold">How to get your export data from Instagram:</p>
|
||||
<ol class="pb-4">
|
||||
<li class="mb-2">
|
||||
<span>Follow the Instagram instructions on <strong>Downloading a copy of your data on Instagram</strong> on <a href="https://help.instagram.com/181231772500920" class="font-weight-bold">this page</a>. <strong class="text-danger small font-weight-bold">Make sure you select the JSON format</strong></span>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<span>Wait for the email from Instagram with your download link</span>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<span>Download your .zip export from Instagram</span>
|
||||
</li>
|
||||
<li class="mb-2">
|
||||
<span>Navigate to the <a href="/settings/import" class="font-weight-bold">Import</a> settings page</span>
|
||||
</li>
|
||||
<li class="">
|
||||
<span>Follow the instructions and import your posts 🥳</span>
|
||||
</li>
|
||||
</ol>
|
||||
<hr class="mb-4" />
|
||||
|
||||
<p class="text-center font-weight-bold">Import Limits</p>
|
||||
|
||||
<div class="list-group pb-4">
|
||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<p class="font-weight-bold mb-0">Max Posts</p>
|
||||
<p class="small mb-0">The maximum imported posts allowed</p>
|
||||
</div>
|
||||
<div class="font-weight-bold">{{ config('import.instagram.limits.max_posts') == -1 ? 'Unlimited' : config('import.instagram.limits.max_posts') }}</div>
|
||||
</div>
|
||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<p class="font-weight-bold mb-0">Max Attempts</p>
|
||||
<p class="small mb-0">The maximum import attempts allowed<br />(counted as total imports grouped by day)</p>
|
||||
</div>
|
||||
<div class="font-weight-bold">{{ config('import.instagram.limits.max_attempts') == -1 ? 'Unlimited' : config('import.instagram.limits.max_attempts') }}</div>
|
||||
</div>
|
||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<p class="font-weight-bold mb-0">Video Imports</p>
|
||||
<p class="small mb-0">The server supports importing video posts</p>
|
||||
</div>
|
||||
<div class="font-weight-bold">{{ config('import.instagram.allow_video_posts') ? '✅' : '❌' }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr class="mb-4" />
|
||||
|
||||
<p class="text-center font-weight-bold mb-0">Import Permissions</p>
|
||||
<p class="text-center small">Who is allowed to use the Import feature</p>
|
||||
|
||||
<div class="list-group">
|
||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<p class="font-weight-bold mb-0">Only Admins</p>
|
||||
<p class="small mb-0">Only admin accounts can import</p>
|
||||
</div>
|
||||
<div class="font-weight-bold">{{ config('import.instagram.permissions.admins_only') ? '✅' : '❌' }}</div>
|
||||
</div>
|
||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<p class="font-weight-bold mb-0">Only Admins + Following</p>
|
||||
<p class="small mb-0">Only admin accounts, or accounts they follow, can import</p>
|
||||
</div>
|
||||
<div class="font-weight-bold">{{ config('import.instagram.permissions.admin_follows_only') ? '✅' : '❌' }}</div>
|
||||
</div>
|
||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<p class="font-weight-bold mb-0">Minimum Account Age</p>
|
||||
<p class="small mb-0">Only accounts with a minimum age in days can import</p>
|
||||
</div>
|
||||
<div class="font-weight-bold">{{ config('import.instagram.permissions.min_account_age')}}</div>
|
||||
</div>
|
||||
<div class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<p class="font-weight-bold mb-0">Minimum Follower Count</p>
|
||||
<p class="small mb-0">Only accounts with a minimum follower count can import</p>
|
||||
</div>
|
||||
<div class="font-weight-bold">{{ config('import.instagram.permissions.min_follower_count')}}</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
|
@ -21,12 +21,18 @@
|
|||
{{-- <li class="nav-item {{request()->is('*/direct-messages')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.dm')}}">{{__('helpcenter.directMessages')}}</a>
|
||||
</li> --}}
|
||||
{{-- <li class="nav-item {{request()->is('*/tagging-people')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.tagging-people')}}">{{__('helpcenter.taggingPeople')}}</a>
|
||||
</li> --}}
|
||||
<li class="nav-item {{request()->is('*/timelines')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.timelines')}}">{{__('helpcenter.timelines')}}</a>
|
||||
</li>
|
||||
{{-- <li class="nav-item {{request()->is('*/embed')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.embed')}}">{{__('helpcenter.embed')}}</a>
|
||||
</li> --}}
|
||||
<li class="nav-item {{request()->is('*/import')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.import')}}">Instagram Import</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<hr>
|
||||
</li>
|
||||
|
@ -37,23 +43,23 @@
|
|||
</li>
|
||||
{{-- <li class="nav-item {{request()->is('*/what-is-the-fediverse')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.what-is-fediverse')}}">{{__('helpcenter.whatIsTheFediverse')}}</a>
|
||||
</li> --}}
|
||||
{{-- <li class="nav-item {{request()->is('*/controlling-visibility')?'active':''}}">
|
||||
</li>
|
||||
<li class="nav-item {{request()->is('*/controlling-visibility')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.controlling-visibility')}}">
|
||||
{{__('helpcenter.controllingVisibility')}}
|
||||
</a>
|
||||
</li> --}}
|
||||
{{-- <li class="nav-item {{request()->is('*/blocking-accounts')?'active':''}}">
|
||||
</li>
|
||||
<li class="nav-item {{request()->is('*/blocking-accounts')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.blocking-accounts')}}">
|
||||
{{__('helpcenter.blockingAccounts')}}
|
||||
</a>
|
||||
</li> --}}
|
||||
</li>--}}
|
||||
<li class="nav-item {{request()->is('*/safety-tips')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.safety-tips')}}">
|
||||
{{__('helpcenter.safetyTips')}}
|
||||
</a>
|
||||
</li>
|
||||
{{-- <li class="nav-item {{request()->is('*/report-something')?'active':''}}">
|
||||
{{--<li class="nav-item {{request()->is('*/report-something')?'active':''}}">
|
||||
<a class="nav-link font-weight-light text-muted" href="{{route('help.report-something')}}">
|
||||
{{__('helpcenter.reportSomething')}}
|
||||
</a>
|
||||
|
|
Loading…
Reference in a new issue