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 #} + +

Django Girls PyCon Balkan

+ +
+ +

Free programming workshop for women Build your first website at Django Girls PyCon Balkan!

+ +
+

+ 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! +

+
+ Django Girls PyCon Balkan Website +
+ +
+ +

Applications are now open ❤

+

+ Application process closes on October 16th and you'll be informed about acceptance or rejection by the end of October(or sooner)! +

+ +
+ Apply here! +
+ +
+ +

Be a Mentor

+ +

+ We would be delighted if you would like to join us as a mentor! Fill the form below if you're interested. +

+
+ I want to be a Coach! +
+ +
+ +

Call For Sponsors

+ +

+ 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 +

+ +
+ Call for Sponsors! +
+ + + + + + + +{% 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 %} + diff --git a/pyconbalkan/urls.py b/pyconbalkan/urls.py index f5082bdf..7d27ccce 100644 --- a/pyconbalkan/urls.py +++ b/pyconbalkan/urls.py @@ -5,7 +5,7 @@ from markdownx import urls as markdownx from pyconbalkan.about.api_urls import router as about -from pyconbalkan.about.views import about_view +from pyconbalkan.about.views import about_view, djangogirls_view from pyconbalkan.cfp.api_urls import router as cfp from pyconbalkan.cfp.views import cfp_detail, cfp_list, cfp_view from pyconbalkan.coc.api_urls import router as coc @@ -54,6 +54,7 @@ path('volunteers/create/', volunteers_createview, name='volunteers_create'), path('organizers', organizers_list, name='organizers'), path('about', about_view, name='about'), + path('djangogirls', djangogirls_view, name='djangogirls'), path('contact', contact_view, name='contact'), path('cfp', cfp_view, name='cfp'), path('cfps', cfp_list, name='cfp_list'),