Advertisement
Guest User

Untitled

a guest
Jun 7th, 2021
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. {% extends 'KinomonsterApp/base.html' %}
  2.  
  3.  
  4. {% block title %}
  5. {{ film.title }}
  6. {% endblock %}
  7.  
  8.  
  9. {% block content %}
  10. <h1>{{ film.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">{{ film.year }}</span>
  17. Рейтинг: <span class="badge">{{ film.rating }}</span>
  18. Режиссер: <span class="badge">{{ film.producer }}</span>
  19. </div>
  20. <div class="margin-8"></div>
  21. <h2>Описание фильма {{ film.title }}</h2>
  22. <hr>
  23. <div class="well">
  24. {{ film.description }}
  25. </div>
  26. <div class="margin-8"></div>
  27. <h2>Отзывы о фильме {{ film.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. <br><br>
  38. {% endfor %}
  39. </div>
  40. <form>
  41. <div class="form-group">
  42. <input type="text" placeholder="ваше имя" class="form-control input-lg">
  43. </div>
  44. <div class="form-group">
  45. <textarea class="form-control"></textarea>
  46. </div>
  47. <button class="btn btn-lg btn-warning pull-right">отправить</button>
  48. </form>
  49. <div class="margin-8 clear"></div>
  50. {% endblock %}
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement