add app name to follow good practice

This commit is contained in:
koksnuss 2020-04-22 17:20:29 +02:00
parent c328717423
commit c8c402e221
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<table>
<thead>
<tr>
<td colspan="4"><a href="{% url 'country' country.name_iso %}">{{ country.name }}</a><td>
<td colspan="4"><a href="{% url 'coinc:country' country.name_iso %}">{{ country.name }}</a><td>
<td colspan="2">x €</td>
<td colspan="9"></td>
</tr>

View File

@ -23,6 +23,7 @@ from django.urls import path
from . import views
app_name = 'coinc'
urlpatterns = [
path('', views.index, name='index'),
path('statistik', views.statistic, name='statistic'),