Support this fundraiser
Mama Africa
By Morris Morrison
Created May 01, 2026
93% funded
2
Donors
0
Shares
0
Updates
Story
from crowdfunding.models import FundraiserCategory
categories = [
{'name': 'Education', 'icon': 'fa-graduation-cap', 'description': 'Support education initiatives and schools'},
{'name': 'Healthcare', 'icon': 'fa-hospital', 'description': 'Medical expenses and healthcare projects'},
{'name': 'Emergency', 'icon': 'fa-ambulance', 'description': 'Emergency relief and disaster response'},
{'name': 'Environment', 'icon': 'fa-leaf', 'description': 'Environmental conservation and sustainability'},
{'name': 'Animals', 'icon': 'fa-paw', 'description': 'Animal welfare and wildlife protection'},
{'name': 'Community', 'icon': 'fa-users', 'description': 'Community development and local projects'},
{'name': 'Arts & Culture', 'icon': 'fa-palette', 'description': 'Art, music, and cultural initiatives'},
{'name': 'Sports', 'icon': 'fa-futbol', 'description': 'Sports teams, events, and facilities'},
{'name': 'Technology', 'icon': 'fa-microchip', 'description': 'Tech innovation and digital projects'},
{'name': 'Business', 'icon': 'fa-briefcase', 'description': 'Small business and entrepreneurial ventures'},
]
for cat in categories:
obj, created = FundraiserCategory.objects.get_or_create(
name=cat['name'],
defaults={
'icon': cat['icon'],
'description': cat['description'],
'is_active': True
}
)
if created:
print(f"Created: {cat['name']}")
else:
print(f"Exists: {cat['name']}")
print("Done!")
About the Beneficiary
John Maina
Myself to the organizer
Updates (0)
No updates yet. Check back later for news about this fundraiser.
Comments (4)
Sign in to leave a comment and show your support
gvb
gvb
gvb
gvb
1 reply
34000
Here we go
1 reply
something else
Organizer
Morris Morrison
Organizer
Nairobi, Kenya