mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add account export settings view
This commit is contained in:
parent
cde0c0437b
commit
fdf55cfe1c
1 changed files with 51 additions and 3 deletions
|
@ -6,8 +6,56 @@
|
|||
<h3 class="font-weight-bold">Data Export</h3>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="alert alert-danger">
|
||||
Coming Soon
|
||||
</div>
|
||||
<ul class="list-group">
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<span class="font-weight-bold">Following</span>
|
||||
</div>
|
||||
<div>
|
||||
<form action="/settings/data-export/following" method="post">
|
||||
@csrf
|
||||
<button type="submit" class="font-weight-bold btn btn-outline-primary btn-sm">Download</button>
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<span class="font-weight-bold">Followers</span>
|
||||
</div>
|
||||
<div>
|
||||
<form action="/settings/data-export/followers" method="post">
|
||||
@csrf
|
||||
<button type="submit" class="font-weight-bold btn btn-outline-primary btn-sm">Download</button>
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<span class="font-weight-bold">Statuses</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="small text-muted">Coming Soon</span>
|
||||
</div>
|
||||
</li>
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<span class="font-weight-bold">Mute/Block List</span>
|
||||
</div>
|
||||
<div>
|
||||
<form action="/settings/data-export/mute-block-list" method="post">
|
||||
@csrf
|
||||
<button type="submit" class="font-weight-bold btn btn-outline-primary btn-sm">Download</button>
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||
<div>
|
||||
<span class="font-weight-bold">Account</span>
|
||||
</div>
|
||||
<div>
|
||||
<span class="small text-muted">Coming Soon</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
@endsection
|
Loading…
Reference in a new issue