followers.html 487 B

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends "base.html" %}
  2. {% block content %}
  3. {% if False and twitter_live_enabled %}
  4. <div class="w-100">
  5. <h2>Follower activity</h2>
  6. <ul>
  7. <li>Posting Schedule (4 seconds * number of followers)
  8. <li>Like Schedule (13 seconds * number of followers)
  9. <li>Unfollows
  10. </ul>
  11. <h2>Timeline activity
  12. <ul>
  13. <li>Likes, replies, retweets
  14. <li>Impressions, prof views, clicks, link clicks
  15. <li>Follower vs. Non
  16. </ul>
  17. </div>
  18. {% endif %}
  19. {% include "partial/users-list.html" %}
  20. {% endblock %}