Skip to content

Commit d78a9d9

Browse files
committed
fixed name to subject
1 parent 59acde7 commit d78a9d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contact_widget/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
22

3-
__VERSION__ = '1.0.1'
3+
__VERSION__ = '1.0.2'
44
__AUTHOR__ = 'Agus Makmun (Summon Agus)'
55
__AUTHOR_EMAIL__ = '[email protected]'

contact_widget/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Contact(models.Model):
1212
created = models.DateTimeField(auto_now_add=True)
1313

1414
def __str__(self):
15-
return self.name
15+
return self.subject
1616

1717
class Meta:
1818
verbose_name = "Detial Contact"

0 commit comments

Comments
 (0)