Advertisement
Guest User

Untitled

a guest
Jun 5th, 2021
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. {% extends 'KinomonsterApp/base.html' %}
  2.  
  3.  
  4. {% block title %}
  5. {{ series.title }}
  6. {% endblock %}
  7.  
  8.  
  9. {% block content %}
  10. <h1>{{ series.title }}</h1>
  11. <hr>
  12. <div class="embed-responsive embed-responsive-16by9">
  13. <iframe width="560" height="315" src="{{ film.youtube_trailer_url }}" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
  14. </div>
  15. <div class="well info-block text-center">
  16. Год: <span class="badge">{{ series.year }}</span>
  17. Рейтинг: <span class="badge">{{ series.rating }}</span>
  18. Режиссер: <span class="badge">{{ series.producer }}</span>
  19. </div>
  20. <div class="margin-8"></div>
  21. <h2>Описание сериала {{ series.title }}</h2>
  22. <hr>
  23. <div class="well">
  24. {{ series.description }}
  25. </div>
  26. <div class="margin-8"></div>
  27. <h2>Отзывы о сериале {{ series.title }}</h2>
  28. <hr>
  29. <div class="panel panel-info">
  30. {% for c in comments %}
  31. <div class="panel-heading">
  32. <span>{{ c.author }}</span>
  33. </div>
  34. <div class="panel-body">
  35. {{ c.comment }}
  36. </div>
  37. {% endfor %}
  38. </div>
  39. <form>
  40. <div class="form-group">
  41. <input type="text" placeholder="ваше имя" class="form-control input-lg">
  42. </div>
  43. <div class="form-group">
  44. <textarea class="form-control"></textarea>
  45. </div>
  46. <button class="btn btn-lg btn-warning pull-right">отправить</button>
  47. </form>
  48. <div class="margin-8 clear"></div>
  49. {% endblock %}
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement