We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
at rango/views.py def show_category(request, category_name_slug): context = { 'category_name_slug': category_name_slug, } ...
def show_category(request, category_name_slug):
context = {
'category_name_slug': category_name_slug,
}
...
and then , the template: category.html <a href="/rango/category/{{ category_name_slug }}/add_page/">Add Page</a>
<a href="/rango/category/{{ category_name_slug }}/add_page/">Add Page</a>
use category_name_slug is better than use category.slug , Especially when try a wrong category_name_slug in the URL , and press the 'Add Page' link.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
at rango/views.py
def show_category(request, category_name_slug):
context = {
'category_name_slug': category_name_slug,
}
...
and then , the template: category.html
<a href="/rango/category/{{ category_name_slug }}/add_page/">Add Page</a>
use category_name_slug is better than use category.slug , Especially when try a wrong category_name_slug in the URL , and press the 'Add Page' link.
The text was updated successfully, but these errors were encountered: