user-picker.html 529 B

12345678910111213141516
  1. <h2>Accounts</h2>
  2. <ul>
  3. {% for k, v in session.items() %}
  4. {% if k.startswith('twitter:') %}
  5. <li><a href="{{ url_for('twitter_v2_facade.get_timeline_home_html', me=k) }}">{{ k }}</a>
  6. {% endif %}
  7. {% if mastodon_enabled and k.startswith('mastodon:') %}
  8. <li><a href="{{ url_for('mastodon_facade.get_timeline_home_html', me=k) }}">{{ k }}</a>
  9. {% endif %}
  10. {% endfor %}
  11. {% if archive_enabled %}
  12. <li><a href="{{ url_for('twitter_archive_facade.get_profile_html', user_id=0) }}">Twitter archive</a>
  13. {% endif %}
  14. </ul>