contentdb/app/templates/packages/screenshot_new.html

23 lines
692 B
HTML
Raw Normal View History

2018-03-26 02:52:25 -07:00
{% extends "base.html" %}
{% block title %}
2022-01-27 10:21:47 -08:00
{{ _("Add a screenshot") }} - {{ package.title }}
2018-03-26 02:52:25 -07:00
{% endblock %}
{% block content %}
2022-01-07 15:27:00 -08:00
<h1>{{ _("Add a screenshot") }}</h1>
2022-01-25 18:51:40 -08:00
<p class="mb-4">
{{ _("The recommended resolution is 1920x1080, and screenshots must be at least %(width)dx%(height)d.",
width=920, height=517) }}
</p>
2020-12-05 20:22:56 -08:00
2018-03-26 02:52:25 -07:00
{% from "macros/forms.html" import render_field, render_submit_field %}
<form method="POST" action="" enctype="multipart/form-data">
{{ form.hidden_tag() }}
{{ render_field(form.title) }}
{{ render_field(form.fileUpload, fieldclass="form-control-file", accept="image/png,image/jpeg") }}
2018-03-26 02:52:25 -07:00
{{ render_submit_field(form.submit) }}
</form>
{% endblock %}