user-picker.html 944 B

1234567891011121314151617181920212223242526
  1. <ul>
  2. {% for k, v in session.items() %}
  3. {% if k.startswith('twitter:') %}
  4. <li><a href="{{ url_for('twitter_v2_facade.get_timeline_home_html', me=k) }}">{{ k }}</a>
  5. {% endif %}
  6. {% if mastodon_enabled and k.startswith('mastodon:') %}
  7. <li><a href="{{ url_for('mastodon_facade.get_timeline_home_html', me=k) }}">{{ k }}</a>
  8. {% endif %}
  9. {% if youtube_enabled and k.startswith('youtube:') %}
  10. <li><a href="{{ url_for('youtube_v3_facade.get_latest_html', me=k) }}">{{ k }}</a>
  11. {% endif %}
  12. {% if messages_enabled and k.startswith('messages:') %}
  13. <li><a href="{{ url_for('messages_facade.get_latest2_html', me=k) }}">{{ k }}</a>
  14. {% endif %}
  15. {% endfor %}
  16. {% if archive_enabled %}
  17. <li><a href="{{ url_for('twitter_archive_facade.get_profile_html', user_id=0) }}">Twitter archive</a>
  18. {% endif %}
  19. {% if feeds_enabled %}
  20. <li><a href="{{ url_for('feeds_facade.get_latest_html', me=None) }}">Feeds</a>
  21. {% endif %}
  22. </ul>