﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
18862	FlatPages get_absolute_url should pay attention to script prefix	Gunnar Scherf	nobody	"When hosting a django app under a subpath of a domain, then get_absolute_url returns the url without the subpath.

{{{
    def get_absolute_url(self):
        return self.url

}}}
Better would be if the subpath is recognized
{{{
    def get_absolute_url(self):
        absolute_url = ""%s%s"" % (get_script_prefix().rstrip('/'), self.url)
        return absolute_url

}}}
"	Cleanup/optimization	closed	contrib.flatpages	1.4	Normal	fixed			Accepted	0	0	0	0	0	0
