Perform to move main developing to git

This commit is contained in:
2022-09-27 18:54:05 +03:00
parent d24c699ce6
commit 8bcc88680b
22 changed files with 511 additions and 5 deletions

View File

@@ -1,6 +1,14 @@
{% extends 'base.html' %}
{% block title %} Аккаунт | вход {% endblock %}
{% block styles %}
<style>
.inline-input {
color: red;
}
</style>
{% endblock %}
{% block content %}
<h1 class=deprecated-page-header"> Создать заказ </h1>
@@ -8,11 +16,12 @@
<form action="{% url 'order-create' %}" method="POST">
{% csrf_token %}
<table>
<tbody>
{{ form.as_table }}
</tbody>
</table>
{# <table>#}
{# <tbody>#}
{# {{ form.as_table }}#}
{# </tbody>#}
{# </table>#}
{{ form.as_ul }}
<button type="submit">Опубликовать</button>
</form>
{% endblock %}