mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-30 16:30:45 +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>
|
<h3 class="font-weight-bold">Data Export</h3>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="alert alert-danger">
|
<ul class="list-group">
|
||||||
Coming Soon
|
<li class="list-group-item d-flex justify-content-between align-items-center">
|
||||||
</div>
|
<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
|
@endsection
|
Loading…
Reference in a new issue