You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using urls.py: This files specifies all the files that would be connected when called through
any hyper-reference and this like
url(r'^$', 'trackleech.blog.views.home', name='home')
arg 1 shows find the page in blog and thus nothing is specified that means to search for index.html
arg 2 takes full heirarchy of the django filesystem and
arg 3 takes name argument
similar behaviour with the next line as well
url(r'^blog/', 'trackleech.blog.views.search', name='search'),
arg 1 shows find the page in blog and thus nothing is specified that means to search for page in blog/
arg 2 takes full heirarchy of the django filesystem and
arg 3 takes name argument
The text was updated successfully, but these errors were encountered:
using urls.py: This files specifies all the files that would be connected when called through
any hyper-reference and this like
url(r'^$', 'trackleech.blog.views.home', name='home')
arg 1 shows find the page in blog and thus nothing is specified that means to search for index.html
arg 2 takes full heirarchy of the django filesystem and
arg 3 takes name argument
similar behaviour with the next line as well
url(r'^blog/', 'trackleech.blog.views.search', name='search'),
arg 1 shows find the page in blog and thus nothing is specified that means to search for page in blog/
arg 2 takes full heirarchy of the django filesystem and
arg 3 takes name argument
The text was updated successfully, but these errors were encountered: