18 lines
No EOL
377 B
HTML
18 lines
No EOL
377 B
HTML
<!-- home.html -->
|
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Import | Furaffinity Archive{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
<h2>Your att the import screen.</h2>
|
|
<form method="post" class="mb-3">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="btn btn-primary" type="submit">Save</button>
|
|
</form>
|
|
</div>
|
|
|
|
{% endblock %} |