diff --git a/pyconbalkan/about/templates/djangogirls.html b/pyconbalkan/about/templates/djangogirls.html new file mode 100644 index 00000000..616a3559 --- /dev/null +++ b/pyconbalkan/about/templates/djangogirls.html @@ -0,0 +1,69 @@ +{% extends "base.html" %} + +{% load static %} + +{% block main_content %} + + {# Django Girls #} + +
+ We believe the IT industry will greatly benefit from bringing more women into technology. We want to give you an opportunity to learn how to program and become one of us – women programmers! + + Workshops are free of charge and if you cannot afford coming to Belgrade but are very motivated to learn and then share your knowledge with others, we may have some funds to help you out with your travel costs and accommodation. The applications will be oppened soon! Stay tuned! +
+ + ++ Application process closes on October 16th and you'll be informed about acceptance or rejection by the end of October(or sooner)! +
+ ++ We would be delighted if you would like to join us as a mentor! Fill the form below if you're interested. +
+ + ++ We couldn't be here without the support from amazing people and organizations who donated money, knowledge and time to help us make this a reality. If you want to contribute and support our goal, please send us an email to pyconbalkan@djangogirls.org +
+ + + + + + + + + +{% endblock %} diff --git a/pyconbalkan/about/views.py b/pyconbalkan/about/views.py index f65b0ffe..16dfd9d1 100644 --- a/pyconbalkan/about/views.py +++ b/pyconbalkan/about/views.py @@ -3,8 +3,6 @@ from pyconbalkan.about.models import About from pyconbalkan.about.serializers import AboutSerializer -from pyconbalkan.coc.views import coc_view -from pyconbalkan.organizers.views import organizers_list class AboutViewSet(viewsets.ModelViewSet): @@ -18,3 +16,7 @@ def about_view(request): 'about': about.first() if about else None, } return render(request, 'about.html', context) + + +def djangogirls_view(request): + return render(request, 'djangogirls.html', {}) diff --git a/pyconbalkan/core/templates/includes/header.html b/pyconbalkan/core/templates/includes/header.html index c73f0780..8cdfa74a 100644 --- a/pyconbalkan/core/templates/includes/header.html +++ b/pyconbalkan/core/templates/includes/header.html @@ -27,6 +27,9 @@ Timetable {% endif %} +