user-card-bs.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <div class="user w-100 p-1" style="border: 1px solid black;">
  2. <div style="float: right; margin-top: 0; text-align: right">
  3. {% if user.profile_image_url %}
  4. <img style="float: right; margin-left: 4px;" src="{{ user.profile_image_url }}">
  5. {% endif %}
  6. {% if user.username %}
  7. <pre style="display: inline; font-weight: bold; ">@{{ user.username }}</pre>
  8. <br>
  9. {% endif %}
  10. <span><pre style="display: inline;">{{ user.id }}</pre></span>
  11. </div>
  12. <p style="margin-top: 0">
  13. {% if user.actions and user.actions.view_profile %}
  14. {% with view_profile=user.actions.view_profile %}
  15. <a href="{{ url_for( view_profile.route, **view_profile.route_params ) }}">
  16. {% endwith %}
  17. {% elif user.url %}
  18. <a href="{{ user.url }}">
  19. {% else %}
  20. <a href="{{ url_for('twitter_v2_facade.get_profile_html', user_id=user.id) }}">
  21. {% endif %}
  22. <strong>{{ user.name }}</strong></a>
  23. {% if user.verified %}
  24. <small>[verified]</small>
  25. {% endif %}
  26. {% if user.protected %}
  27. <small>[protected]</small>
  28. {% endif %}
  29. </p>
  30. {% if user.description %}
  31. <div>
  32. {{ user.description }}
  33. </div>
  34. {% endif %}
  35. {% if user.pinned_tweet_id %}
  36. <div>
  37. <p>Pinned tweet:</p>
  38. <div style="border: 1px solid black">{{ user.pinned_tweet_id }}</div>
  39. </div>
  40. {% endif %}
  41. <dl>
  42. {% if user.created_at %}
  43. <dt>Member since</dt>
  44. <dd>{{ user.created_at }}</dd>
  45. {% endif %}
  46. {% if user_dc and user_dc.website %}
  47. <dt>Website</dt>
  48. <dd><a href="{{ user_dc.website }}">{{ user_dc.website }}</a></dd>
  49. {% endif %}
  50. {% if user.location %}
  51. <dt>Location</dt>
  52. <dd>{{ user.location }}</dd>
  53. {% endif %}
  54. {% if user.public_metrics %}
  55. {% if user.public_metrics.tweet_count %}
  56. <dt>Tweets</dt>
  57. <dd>{{ user.public_metrics.tweet_count }}</dd>
  58. {% endif %}
  59. {% if user.public_metrics.followers_count %}
  60. <dt>Followers</dt>
  61. <dd>{{ user.public_metrics.followers_count }}</dd>
  62. {% endif %}
  63. {% if user.public_metrics.following_count %}
  64. <dt>Following</dt>
  65. <dd>{{ user.public_metrics.following_count }}</dd>
  66. {% endif %}
  67. {% if user.public_metrics.listed_count %}
  68. <dt>Listed</dt>
  69. <dd>{{ user.public_metrics.listed_count }}</dd>
  70. {% endif %}
  71. {% endif %}
  72. </dl>
  73. </div>