Browse Source

use url reversing

master
christian 6 years ago
parent
commit
ac3da881b3
4 changed files with 6 additions and 4 deletions
  1. +3
    -1
      bloomhunt/urls.py
  2. +1
    -1
      mobile/templates/mobile/index.html
  3. +1
    -1
      mobile/templates/mobile/scanned.html
  4. +1
    -1
      mobile/templates/mobile/thankyou.html

+ 3
- 1
bloomhunt/urls.py View File

@@ -16,9 +16,11 @@ Including another URLconf
from django.conf.urls import url
from django.contrib import admin
from django.urls import include, path
from django.views.generic import RedirectView

urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^mobile/', include('mobile.urls')),
url(r'^map/', include('map.urls'))
url(r'^map/', include('map.urls'), name='map'),
url(r'', RedirectView.as_view(url='/map/', permanent=False))
]

+ 1
- 1
mobile/templates/mobile/index.html View File

@@ -6,5 +6,5 @@

<p>Hunt blooming trees in your area.</p>

<a class="btn btn-default" id="btn_scan" href="/mobile/scan">Scan a blooming tree</a>
<a class="btn btn-default" id="btn_scan" href="{% url 'mobile:scan' %}">Scan a blooming tree</a>
{% endblock %}

+ 1
- 1
mobile/templates/mobile/scanned.html View File

@@ -7,7 +7,7 @@ tree is blooming.<p>

<p>You may give it a name now</p>

<form action="/mobile/addtree/" method="post">
<form action="{% url 'mobile:addtree' %}" method="post">
{% csrf_token %}
<input type="text" name="name">
<input type="hidden" name="tree" value="{{ tree.name }}">


+ 1
- 1
mobile/templates/mobile/thankyou.html View File

@@ -7,6 +7,6 @@
<p>Does that feel great? It should! You really achieved something in
your life!</p>

<a class="btn btn-default" href="/mobile">Back to hunting</a>
<a class="btn btn-default" href="{% url 'mobile:index' %}">Back to hunting</a>

{% endblock %}

Loading…
Cancel
Save