16 lines
411 B
HTML
16 lines
411 B
HTML
{% extends "auctions/layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="form-group" style="margin-left: 20px">
|
|
<h2>Create Listing</h2>
|
|
|
|
|
|
<form action="{% url 'create' %}" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
|
|
{{ Form.as_p }}
|
|
<input class="btn btn-primary" type="submit" value="Create Listing"></div>
|
|
</form>
|
|
|
|
{% endblock %} |