1
0
Fork 0

consistent style for urls

This commit is contained in:
Mouse Reeve 2020-11-10 21:34:26 -08:00
parent 8ae05c1350
commit 7f9cc31040
10 changed files with 20 additions and 20 deletions

View file

@ -3,7 +3,7 @@
{% block content %}
<div class="block">
<h1 class="title">Import Books from GoodReads</h1>
<form name="import" action="/import_data/" method="post" enctype="multipart/form-data">
<form name="import" action="/import-data/" method="post" enctype="multipart/form-data">
{% csrf_token %}
<div class="field">
{{ import_form.as_p }}
@ -31,7 +31,7 @@
{% endif %}
<ul>
{% for job in jobs %}
<li><a href="/import_status/{{ job.id }}">{{ job.created_date | naturaltime }}</a></li>
<li><a href="/import-status/{{ job.id }}">{{ job.created_date | naturaltime }}</a></li>
{% endfor %}
</ul>
</div>