101 lines
4.1 KiB
HTML
101 lines
4.1 KiB
HTML
{% from 'lib/interval.html' import interval_input -%}
|
|
{% extends 'lib/layout.html' %}
|
|
{% block body -%}
|
|
|
|
<section class=viewer>
|
|
<p>Hello,
|
|
<img class=avatar src="{{g.viewer.account.avatar_url}}"/>
|
|
{{g.viewer.account.display_name}}!
|
|
<a href="{{url_for('logout')}}">Log out</a>
|
|
</p>
|
|
{% set enabled_disabled = "enabled" if g.viewer.account.policy_enabled else "disabled" %}
|
|
<div class="banner {{enabled_disabled}}">Forget is currently {{ enabled_disabled }} on your account.
|
|
{% if g.viewer.account.policy_enabled -%}
|
|
<form action='{{url_for("disable")}}' method='post' enctype='multipart/form-data'>
|
|
<input type='submit' value='Disable'>
|
|
</form>
|
|
{% else -%}
|
|
<form action='{{url_for("enable")}}' method='post' enctype='multipart/form-data'>
|
|
<input type='submit' value='Enable'>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
{% set post_count = g.viewer.account.post_count() %}
|
|
<p>Currently keeping track of {{ post_count }} of your posts, roughly {{ g.viewer.account.estimate_eligible_for_delete() }} of which currently match your expiration rules.</p>
|
|
{% if g.viewer.account.service == 'twitter'
|
|
and g.viewer.account.reported_post_count
|
|
and post_count < g.viewer.account.reported_post_count * 3/4
|
|
and g.viewer.account.reported_post_count > 3200 -%}
|
|
<div class='banner warning'>Are we missing some of your posts? Try uploading a tweet archive below</div>
|
|
{% endif %}
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Settings</h2>
|
|
|
|
{% if request.args.get('settings_saved') != None %}
|
|
<div class='banner success'>Settings saved successfully</div>
|
|
{% endif %}
|
|
|
|
{% if settings_error %}
|
|
<div class='banner error'>Something went wrong trying to save your settings. Please try again later.</div>
|
|
{% endif %}
|
|
|
|
<form action='{{url_for("settings")}}' method='post' enctype='multipart/form-data'>
|
|
<p>Posts that are less than
|
|
{{interval_input(g.viewer.account, 'policy_keep_younger', scales)}}
|
|
old are considered fresh
|
|
</p>
|
|
<p>Your latest
|
|
<input type=number name=policy_keep_latest min=0 step=1 style='max-width:8ch' value={{g.viewer.account.policy_keep_latest}}>
|
|
posts are considered fresh
|
|
</p>
|
|
<p>Posts that you have liked / favourited will stay fresh forever
|
|
<span style='display:inline-block'>
|
|
<label><input type=radio name=policy_keep_favourites value=true {{ "checked" if g.viewer.account.policy_keep_favourites }}> Yes</label>
|
|
<label><input type=radio name=policy_keep_favourites value=false {{ "checked" if not g.viewer.account.policy_keep_favourites }}> No</label>
|
|
</span>
|
|
</p>
|
|
<p>Any post that is not kept fresh by any of these rules is considered expired. One random expired post will be deleted every
|
|
{{interval_input(g.viewer.account, 'policy_delete_every', scales)}}
|
|
</p>
|
|
<input type=submit value='Save settings'>
|
|
</form>
|
|
|
|
</section>
|
|
{% if g.viewer.account.service == 'twitter' %}
|
|
<section>
|
|
|
|
<h2 id='tweet_archive_import'>Tweet archive import</h2>
|
|
<p>
|
|
Twitter's API only lets us access up to 3200 of your most recent tweets. If you have more tweets than that, you can request an archive of your tweets from
|
|
<a href="https://twitter.com/settings/account">Twitter's settings page</a>,
|
|
and upload it here.
|
|
</p>
|
|
|
|
{% if tweet_archive_failed %}
|
|
<div class="banner error">The file you uploaded is not a valid tweet archive. No posts have been imported.</div>
|
|
{% endif %}
|
|
|
|
<form action='{{url_for('upload_tweet_archive')}}' method='post' enctype='multipart/form-data'>
|
|
<input type="file" name='file'><input type="submit" value="Upload">
|
|
</form>
|
|
|
|
{% if g.viewer.account.twitter_archives %}
|
|
<h3 id="recent_archives">Recent archives</h3>
|
|
<ul>
|
|
{% for archive in g.viewer.account.twitter_archives %}
|
|
<li class="tweet_archive" data-status="{{archive.status()}}">{{archive.created_at.strftime('%Y-%m-%d %H:%M')}}<br>
|
|
{% if archive.chunks is none %}
|
|
Archive could not be opened
|
|
{% else %}
|
|
{{archive.chunks_successful}}/{{archive.chunks}} months imported, {{archive.chunks_failed}} failed</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|