followers.html 339 B

123456789101112131415161718192021222324
  1. {% extends "base.html" %}
  2. {% block content %}
  3. {% if 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. </div>
  12. {% endif %}
  13. {% include "partial/users-list.html" %}
  14. {% endblock %}