mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-13 17:45:16 +00:00
Add more info to user export page (#3093)
- match page title to menu - change description on IMPORT page from 'readthroughs' to 'reading history' - provide more information on export page about what is and is not included.
This commit is contained in:
parent
9ddd631549
commit
0a5e1048ce
2 changed files with 33 additions and 6 deletions
|
@ -119,14 +119,14 @@
|
||||||
{% trans "Reading goals" %}
|
{% trans "Reading goals" %}
|
||||||
</label>
|
</label>
|
||||||
<p id="desc_include_goals">
|
<p id="desc_include_goals">
|
||||||
{% trans "Reading goals for all years listed in the import file" %}
|
{% trans "Overwrites reading goals for all years listed in the import file" %}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<label class="label">
|
<label class="label">
|
||||||
<input type="checkbox" name="include_shelves" checked> {% trans "Shelves" %}
|
<input type="checkbox" name="include_shelves" checked> {% trans "Shelves" %}
|
||||||
</label>
|
</label>
|
||||||
<label class="label">
|
<label class="label">
|
||||||
<input type="checkbox" name="include_readthroughs" checked> {% trans "Reading dates ('readthroughs')" %}
|
<input type="checkbox" name="include_readthroughs" checked> {% trans "Reading history" %}
|
||||||
</label>
|
</label>
|
||||||
<label class="label">
|
<label class="label">
|
||||||
<input type="checkbox" name="include_reviews" checked> {% trans "Book reviews" %}
|
<input type="checkbox" name="include_reviews" checked> {% trans "Book reviews" %}
|
||||||
|
|
|
@ -5,14 +5,41 @@
|
||||||
{% block title %}{% trans "User Export" %}{% endblock %}
|
{% block title %}{% trans "User Export" %}{% endblock %}
|
||||||
|
|
||||||
{% block header %}
|
{% block header %}
|
||||||
{% trans "User Export" %}
|
{% trans "Export User" %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block panel %}
|
{% block panel %}
|
||||||
<div class="block content">
|
<div class="block content">
|
||||||
<p class="notification">
|
<div class="block content">
|
||||||
{% trans "Your exported archive file will include all user data for import into another Bookwyrm server" %}
|
<p> {% trans "You can create an export file here. This will allow you to migrate your data to another BookWyrm account." %}</p>
|
||||||
</p>
|
</div>
|
||||||
|
<div class="block mx-5 columns">
|
||||||
|
{% blocktrans trimmed %}
|
||||||
|
<div class="column is-half">
|
||||||
|
<h2 class="is-size-5">Your file will include:</h2>
|
||||||
|
<ul>
|
||||||
|
<li>User profile</li>
|
||||||
|
<li>Most user settings</li>
|
||||||
|
<li>Reading goals</li>
|
||||||
|
<li>Shelves</li>
|
||||||
|
<li>Reading history</li>
|
||||||
|
<li>Book reviews</li>
|
||||||
|
<li>Statuses</li>
|
||||||
|
<li>Your own lists and saved lists</li>
|
||||||
|
<li>Which users you follow and block</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="column is-half">
|
||||||
|
<h2 class="is-size-5">Your file will not include:</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Direct messages</li>
|
||||||
|
<li>Replies to your statuses</li>
|
||||||
|
<li>Groups</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{% endblocktrans %}
|
||||||
|
</div>
|
||||||
|
<p class="block">{% trans "In your new BookWyrm account can choose what to import: you will not have to import everything that is exported." %}</p>
|
||||||
{% if next_available %}
|
{% if next_available %}
|
||||||
<p class="notification is-warning">
|
<p class="notification is-warning">
|
||||||
{% blocktrans trimmed %}
|
{% blocktrans trimmed %}
|
||||||
|
|
Loading…
Reference in a new issue