18 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "print/print_code.html" %}
{% block title %}Загрузка кода на печать{% endblock %}
{% block header %}Преподаватель: {{ user.username }} | <a href="/auth/logout">Выйти</a>{% endblock %}
{% block extra %}
<div class="card">
<h2>Отправка файла на печать</h2>
<p>У вас есть права на печать документов напрямую, загружая .pdf!</p>
<form class="file-upload" action="/printpdf" method="POST" enctype="multipart/form-data">
<label for="file">Загрузка файла .PDF</label>
<input type="file" id="file" name="file" accept=".pdf">
<label style="margin-top: 10px;" for="samples">Количество копий (допустимый максимум - 15, можно повторять запросы)</label>
<input type="number" id="samples" name="samples" value="1">
<button style="margin-top: 10px;" type="submit" class="button">Распечатать</button>
</form>
</div>
{% endblock %}