Fix form styling
This commit is contained in:
parent
2680476fe8
commit
42e9ba15c5
|
@ -19,4 +19,12 @@ textarea {
|
|||
|
||||
#button-container button {
|
||||
@apply mx-1;
|
||||
}
|
||||
}
|
||||
|
||||
th {
|
||||
@apply text-left;
|
||||
}
|
||||
|
||||
th label {
|
||||
@apply mr-4;
|
||||
}
|
||||
|
|
|
@ -3,11 +3,14 @@
|
|||
{% block title %}{{ title }}{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
<form method="post" enctype="multipart/form-data" class="mx-auto">
|
||||
<form method="post" enctype="multipart/form-data">
|
||||
<table class="mx-auto">
|
||||
{% csrf_token %}
|
||||
|
||||
{{ form.as_p }}
|
||||
|
||||
<input type="submit" value="Submit"/>
|
||||
{{ form.as_table }}
|
||||
<tr>
|
||||
<td><input type="submit" value="Submit"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
{% endblock content %}
|
Loading…
Reference in New Issue