Templates added

This commit is contained in:
2024-06-05 11:33:02 +03:00
parent 69a2160eb7
commit 50c53060bf
117 changed files with 16737 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{% extends "artsurvey/base.html" %}
{% load i18n %}
{% block header %}{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-sm-12">
<h4>{% trans 'Attach file to' %}: <a href="{{ source.get_absolute_url }}">{{ source }}</a></h4>
<form enctype="multipart/form-data" action="" method="post">{% csrf_token %}
<div class="form-group">
<form action="" method="post">
{% csrf_token %}
<h5>
<table>
{{ form }}
</table>
</h5>
<input type="submit" class="btn btn-primary" value="{% trans 'Upload' %}" />
</form>
</div>
</div>
</div>
</div>
{% endblock %}