From 15babab2c0b703c3d3b36ee3aae2b7b428f7830f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1tia=20Nakamura?= Date: Sat, 1 Sep 2018 20:13:00 +0200 Subject: [PATCH] about: add django girls info page --- pyconbalkan/about/templates/djangogirls.html | 69 +++++++++++++++++++ pyconbalkan/about/views.py | 3 + .../core/templates/includes/header.html | 3 + pyconbalkan/urls.py | 3 +- 4 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 pyconbalkan/about/templates/djangogirls.html 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 832f8e5b..74fdb0cf 100644 --- a/pyconbalkan/about/views.py +++ b/pyconbalkan/about/views.py @@ -24,3 +24,6 @@ def about_view(request): context.update(organizers_context) return render(request, 'about.html', context) + +def djangogirls_view(request): + return render(request, 'djangogirls.html', {}) \ No newline at end of file diff --git a/pyconbalkan/core/templates/includes/header.html b/pyconbalkan/core/templates/includes/header.html index 8dacd224..ea012f40 100644 --- a/pyconbalkan/core/templates/includes/header.html +++ b/pyconbalkan/core/templates/includes/header.html @@ -13,6 +13,9 @@ + diff --git a/pyconbalkan/urls.py b/pyconbalkan/urls.py index 5df641d2..78993c8f 100644 --- a/pyconbalkan/urls.py +++ b/pyconbalkan/urls.py @@ -6,7 +6,7 @@ from pyconbalkan.cfp.views import cfp_detail, cfp_list, cfp_view from pyconbalkan.conference.api_urls import router as conference from pyconbalkan.core import routers, views -from pyconbalkan.about.views import about_view +from pyconbalkan.about.views import about_view, djangogirls_view from pyconbalkan.contact.views import contact_view from pyconbalkan.news.views import * from pyconbalkan.speaker.views import * @@ -50,6 +50,7 @@ path('organizers//', organizer_view, name='organizer_detail'), path('volunteers/create/', volunteers_createview, name='volunteers_create'), 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'),