Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
1 result

addvideo.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    addvideo.html 533 B
    {% extends "page.html" %}
    {% load formatting %}
    {% block heading %}Upload video{% endblock %}
    {% block content %}
    <form action="{% url pages.views.video_create meeting.id %}" method="post" enctype="multipart/form-data">
      <input type="hidden" name="relatedsubmission_id" value="{{submission.id}}" />
      <p>Please select a video file and press upload. Currently we only support avi files<p>
      Select file: {{ form.videoupload}} {{ form.videoupload_file }}<br>
      {% submit %} {% cancel meeting.get_absolute_url %}
    </form>
    {% endblock %}