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
Find any hard-coded internal links (e.g. https://github.com/codeforkyana/renters-rights/blob/master/renters_rights/units/templates/units/unit_form.html#L13) and update them to use Django-generated links.
For links in templates, that would entail changing them to use the url template tag: https://docs.djangoproject.com/en/2.2/ref/templates/builtins/#url
url
For links in Python code, that would entail changing them to use the reverse utility method: https://docs.djangoproject.com/en/2.2/ref/urlresolvers/
reverse
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Find any hard-coded internal links (e.g. https://github.com/codeforkyana/renters-rights/blob/master/renters_rights/units/templates/units/unit_form.html#L13) and update them to use Django-generated links.
For links in templates, that would entail changing them to use the
url
template tag: https://docs.djangoproject.com/en/2.2/ref/templates/builtins/#urlFor links in Python code, that would entail changing them to use the
reverse
utility method: https://docs.djangoproject.com/en/2.2/ref/urlresolvers/The text was updated successfully, but these errors were encountered: