mirror of
https://github.com/django/django.git
synced 2025-11-02 21:03:53 +00:00
Fixed #24328 -- cleaned up Options._get_fields() implementation
This commit is contained in:
parent
bed504d70b
commit
bad5f262bf
5 changed files with 106 additions and 105 deletions
|
|
@ -158,7 +158,7 @@ class ProxyTrackerUser(TrackerUser):
|
|||
@python_2_unicode_compatible
|
||||
class Issue(models.Model):
|
||||
summary = models.CharField(max_length=255)
|
||||
assignee = models.ForeignKey(TrackerUser)
|
||||
assignee = models.ForeignKey(ProxyTrackerUser)
|
||||
|
||||
def __str__(self):
|
||||
return ':'.join((self.__class__.__name__, self.summary,))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue