~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to wlsearch/urls.py

  • Committer: franku
  • Date: 2018-04-03 05:18:03 UTC
  • mto: This revision was merged to the branch mainline in revision 491.
  • Revision ID: somal@arcor.de-20180403051803-2003zf49j3xd860i
url fixes; render_to_response() -> render(); disabled tracking

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
from views import search
14
14
 
15
15
urlpatterns = [
16
 
    url(r'^/?$', search, name='search'),
 
16
    url(r'^$', search, name='search'),
17
17
]