Skip to content

Commit 15babab

Browse files
author
Kátia Nakamura
committed
about: add django girls info page
1 parent efb8d4e commit 15babab

File tree

4 files changed

+77
-1
lines changed

4 files changed

+77
-1
lines changed
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{% extends "base.html" %}
2+
3+
{% load static %}
4+
5+
{% block main_content %}
6+
7+
{# Django Girls #}
8+
9+
<h1 class="title title--yellow mb-xs-20" href="https://djangogirls.org/pyconbalkan/">Django Girls PyCon Balkan</h1>
10+
11+
<hr class="line line--blue line--short line--spaced">
12+
13+
<h2 centered title title--white title--medium title--uppercase mt-xs-20 mb-xs-80>Free programming workshop for women Build your first website at Django Girls PyCon Balkan!</h2>
14+
15+
</br>
16+
<p>
17+
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!
18+
19+
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!
20+
</p>
21+
<div class="card">
22+
<a class="menu__list__link menu__list__link--featured" href="https://djangogirls.org/pyconbalkan/"
23+
target="_blank" role="button">Django Girls PyCon Balkan Website</a>
24+
</div>
25+
26+
<hr class="line long">
27+
28+
<h2 title title--white title--medium title--uppercase mt-xs-20 mb-xs-80>Applications are now open ❤</h2>
29+
<p>
30+
Application process closes on <b>October 16th</b> and you'll be informed about acceptance or rejection by the end of October(or sooner)!
31+
</p>
32+
33+
<div class="card">
34+
<a class="menu__list__link menu__list__link--featured" href="https://djangogirls.org/pyconbalkan/apply/"
35+
target="_blank" role="button">Apply here!</a>
36+
</div>
37+
38+
<hr class="line long">
39+
40+
<h2 title title--white title--medium title--uppercase mt-xs-20 mb-xs-80>Be a Mentor</h2>
41+
42+
<p>
43+
We would be delighted if you would like to join us as a mentor! Fill the form below if you're interested.
44+
</p>
45+
<div class="card">
46+
<a class="menu__list__link menu__list__link--featured" href="https://docs.google.com/forms/d/e/1FAIpQLSebbvAdGGy1XhBcQPcdyejwjfGBBk3GU144b7_ZJJJgfOxPfw/viewform"
47+
target="_blank" role="button">I want to be a Coach!</a>
48+
</div>
49+
50+
<hr class="line long">
51+
52+
<h2 title title--white title--medium title--uppercase mt-xs-20 mb-xs-80>Call For Sponsors</h2>
53+
54+
<p>
55+
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
56+
</p>
57+
58+
<div class="card">
59+
<a class="menu__list__link menu__list__link--featured" href="https://speakerdeck.com/katiayn/django-girls-pycon-balkan-call-for-sponsors"
60+
target="_blank" role="button">Call for Sponsors!</a>
61+
</div>
62+
63+
64+
65+
66+
67+
68+
69+
{% endblock %}

pyconbalkan/about/views.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,6 @@ def about_view(request):
2424
context.update(organizers_context)
2525

2626
return render(request, 'about.html', context)
27+
28+
def djangogirls_view(request):
29+
return render(request, 'djangogirls.html', {})

pyconbalkan/core/templates/includes/header.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
<li class="menu__list__item">
1414
<a class="menu__list__link {% if request.path == '/about' %}active{% endif %}" href="/about" role="button">About Us</a>
1515
</li>
16+
<li class="menu__list__item">
17+
<a class="menu__list__link {% if request.path == '/djangogirls' %}active{% endif %}" href="/djangogirls" role="button">Django Girls Blkn</a>
18+
</li>
1619
<li class="menu__list__item">
1720
<a class="menu__list__link {% if request.path == '/info' %}active{% endif %}" href="/info" role="button">Info</a>
1821
</li>

pyconbalkan/urls.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from pyconbalkan.cfp.views import cfp_detail, cfp_list, cfp_view
77
from pyconbalkan.conference.api_urls import router as conference
88
from pyconbalkan.core import routers, views
9-
from pyconbalkan.about.views import about_view
9+
from pyconbalkan.about.views import about_view, djangogirls_view
1010
from pyconbalkan.contact.views import contact_view
1111
from pyconbalkan.news.views import *
1212
from pyconbalkan.speaker.views import *
@@ -50,6 +50,7 @@
5050
path('organizers/<slug:slug>/', organizer_view, name='organizer_detail'),
5151
path('volunteers/create/', volunteers_createview, name='volunteers_create'),
5252
path('about', about_view, name='about'),
53+
path('djangogirls', djangogirls_view, name='djangogirls'),
5354
path('contact', contact_view, name='contact'),
5455
path('cfp', cfp_view, name='cfp'),
5556
path('cfps', cfp_list, name='cfp_list'),

0 commit comments

Comments
 (0)