2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

Update links to documenation

This commit is contained in:
Oliver Walters
2020-09-21 22:44:48 +10:00
parent 12e43dcc46
commit 07adee3c51
3 changed files with 6 additions and 7 deletions

View File

@ -83,7 +83,7 @@ def inventree_github_url(*args, **kwargs):
@register.simple_tag()
def inventree_docs_url(*args, **kwargs):
""" Return URL for InvenTree documenation site """
return "https://inventree.github.io"
return "https://inventree.readthedocs.io/"
@register.simple_tag()

View File

@ -35,7 +35,7 @@ class TemplateTagTest(TestCase):
self.assertIn('github.com', inventree_extras.inventree_github_url())
def test_docs(self):
self.assertIn('inventree.github.io', inventree_extras.inventree_docs_url())
self.assertIn('inventree.readthedocs.io', inventree_extras.inventree_docs_url())
class PartTest(TestCase):