mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Fixed #15552 -- LOGIN_URL and LOGIN_REDIRECT_URL can take URLpattern names.
Thanks UloPe and Eric Florenzano for the patch, and Malcolm Tredinnick for review.
This commit is contained in:
parent
518c582966
commit
a78dd109e6
13 changed files with 162 additions and 52 deletions
12
tests/regressiontests/resolve_url/models.py
Normal file
12
tests/regressiontests/resolve_url/models.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
"""
|
||||
Regression tests for the resolve_url function.
|
||||
"""
|
||||
|
||||
from django.db import models
|
||||
|
||||
|
||||
class UnimportantThing(models.Model):
|
||||
importance = models.IntegerField()
|
||||
|
||||
def get_absolute_url(self):
|
||||
return '/importance/%d/' % (self.importance,)
|
Loading…
Add table
Add a link
Reference in a new issue