Advertisement
matacoder

Untitled

Sep 6th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.55 KB | None | 0 0
  1. <div class="card">
  2.     <div class="card-body">
  3.             <div class="h2">
  4.                 <!-- Имя автора -->
  5.                 {{ profile.author.first_name }} {{ profile.author.last_name }}
  6.             </div>
  7.             <div class="h3 text-muted">
  8.                  <!-- username автора -->
  9.                  @{{ profile.author }}
  10.             </div>
  11.     </div>
  12.     <ul class="list-group list-group-flush">
  13.             <li class="list-group-item">
  14.                     <div class="h6 text-muted">
  15.                     Подписчиков: {{ profile.followers }} <br />
  16.                     Подписан: {{ profile.following }}
  17.                     </div>
  18.             </li>
  19.             <li class="list-group-item">
  20.                     <div class="h6 text-muted">
  21.                         <!-- Количество записей -->
  22.                         Записей: {{ profile.posts_count }}
  23.                     </div>
  24.             </li>
  25.             <li class="list-group-item">
  26.                 {% if following %}
  27.                 <a class="btn btn-lg btn-light"
  28.                        href="{% url 'profile_unfollow' profile.author.username %}" role="button">
  29.                         Отписаться
  30.                 </a>
  31.                 {% else %}
  32.                 <a class="btn btn-lg btn-primary"
  33.                        href="{% url 'profile_follow' profile.author.username %}" role="button">
  34.                 Подписаться
  35.                 </a>
  36.                 {% endif %}
  37.             </li>
  38.     </ul>
  39. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement