Skip to content

Commit 74596c6

Browse files
committed
change alies
1 parent 1e43f6d commit 74596c6

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

apps/dev/fixtures/adalovedev.jpg

38.8 KB
Loading

apps/dev/fixtures/avatar.jpg

-53 KB
Binary file not shown.

apps/dev/fixtures/python-es.png

43.7 KB
Loading

apps/dev/management/commands/dbload.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,28 +59,28 @@ def add_allies():
5959
"""
6060
print("Adding allies")
6161

62-
photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/fancy_venue.jpg'
62+
photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/adalovedev.jpg'
6363
with photo_path.open('rb') as fin:
6464
photo = UploadedFile(fin, name=photo_path.name)
6565
Ally(
66-
name='Ally 1',
67-
description='El aliado 1 es el mejor del mundo',
66+
name='AdaLoveDev',
67+
description='Somos una comunidad sin ánimo de lucro cuyo objetivo es dar visibilidad y empoderamiento a las mujeres en el sector tecnológico',
6868
logo=photo,
69-
url='mywebsite.com',
70-
twitter='https://twitter.com/elonmusk',
71-
email='some.mail@domain.com',
69+
url='https://adalovedev.es/',
70+
twitter='https://twitter.com/adalovedev',
71+
email='organization@adalovedev.es',
7272
).save()
7373

74-
photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/avatar.jpg'
74+
photo_path = Path(settings.BASE_DIR) / 'apps/dev/fixtures/python-es.png'
7575
with photo_path.open('rb') as fin:
7676
photo = UploadedFile(fin, name=photo_path.name)
7777
Ally(
78-
name='Un aliado mas',
79-
description='El aliado 2 no es malo, hace lo que puede',
78+
name='Python España',
79+
description='Asociación Python España. Trabajando para promover y visibilizar el uso del lenguaje de programación Python en nuestro país',
8080
logo=photo,
81-
url='https://domain.me/',
82-
twitter='https://twitter.com/username',
83-
email='someone@gmail.com',
81+
url='https://www.es.python.org/',
82+
twitter='https://twitter.com/python_es',
83+
email=' contacto@es.python.org',
8484
).save()
8585

8686

0 commit comments

Comments
 (0)