video_notes.html 936 B

12345678910111213141516171819
  1. <div class="offcanvas-body text-white-50">
  2. <div id="video-notes-status-div" class="text-white">
  3. </div>
  4. <div id="video-notes-form">
  5. <div class="form-group text-white">
  6. <h1>Your Notes</h1>
  7. <br>
  8. <textarea name="video-notes-text-area" class="form-control bg-dark text-white-50" placeholder="Enter here..." id="video-notes-text-area" rows="17">{{ video.user_notes }}</textarea>
  9. </div>
  10. </div>
  11. <br>
  12. <button type="button" hx-post="{% url 'video_notes' playlist_id video.video_id %}" hx-include="[id='video-notes-form']" hx-target="#video-notes-status-div" class="btn btn-success">Save</button>
  13. <br>
  14. </div>