We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e6d45d commit 1e43f6dCopy full SHA for 1e43f6d
3 files changed
apps/dev/fixtures/avatar.jpg
53 KB
apps/dev/fixtures/sergio.jpg
-61.5 KB
apps/dev/management/commands/dbload.py
@@ -71,16 +71,16 @@ def add_allies():
71
email='some.mail@domain.com',
72
).save()
73
74
- photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/sergio.jpg'
+ photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/avatar.jpg'
75
with photo_path.open('rb') as fin:
76
photo = UploadedFile(fin, name=photo_path.name)
77
Ally(
78
- name='Sergio',
+ name='Un aliado mas',
79
description='El aliado 2 no es malo, hace lo que puede',
80
logo=photo,
81
- url='https://sdelquin.me/',
82
- twitter='https://twitter.com/sdelquin',
83
- email='sdelquin@gmail.com',
+ url='https://domain.me/',
+ twitter='https://twitter.com/username',
+ email='someone@gmail.com',
84
85
86
0 commit comments