Skip to content
This repository has been archived by the owner on Nov 13, 2018. It is now read-only.

Commit

Permalink
Upped the year, time to prepare new sprint!
Browse files Browse the repository at this point in the history
  • Loading branch information
oinopion committed Dec 21, 2013
1 parent c621916 commit 61b3e87
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: python ./manage.py run_gunicorn -w 4 -b 0.0.0.0:$PORT
web: gunicorn sprint.wsgi:application -w 4 -b 0.0.0.0:$PORT
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django==1.4.3
django-widget-tweaks==1.1.2
gunicorn==0.17.2
raven==3.1.3
Django==1.6.1
django-widget-tweaks==1.3
gunicorn==18.0
raven==3.6.0
wsgiref==0.1.2
3 changes: 2 additions & 1 deletion sprint/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

MANAGERS = ADMINS

ALLOWED_HOSTS = ['*']

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
Expand Down Expand Up @@ -104,7 +106,6 @@
'django.contrib.staticfiles',
'raven.contrib.django',
'widget_tweaks',
'gunicorn',
'sprint',
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
Expand Down
7 changes: 3 additions & 4 deletions templates/base.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<!DOCTYPE html>
{% load static from staticfiles %}
{% load url from future %}
<html>
<head>
<title>Django Sprint Kraków</title>
<title>Django Sprint Kraków 2014</title>
<link rel="stylesheet" href="{% static 'bootstrap.min.css' %}" type="text/css"/>
<link rel="stylesheet" href="{% static 'app.css' %}" type="text/css"/>
</head>
Expand All @@ -15,7 +14,7 @@
<div class="container">
<a class="brand" href="/">Django Sprint Kraków</a>
<ul class="nav">
<li><a href="https://django-sprint-krk-2013.eventbrite.com/">Register</a></li>
<li><a href="https://django-sprint-krk-2014.eventbrite.com/">Register</a></li>
<li><a href="{% url 'contact' %}">Contact</a></li>
<li><a href="{% url 'code_of_conduct' %}">Code of Conduct</a></li>
</ul>
Expand All @@ -34,7 +33,7 @@

<footer>
<p>
&copy; <a href="http://pykonik.org/">Pykonik</a> 2013
&copy; <a href="http://pykonik.org/">Pykonik</a> 2013-2014
<span class="pull-right">Build with
<a href="https://www.djangoproject.com/">Django</a>
</span>
Expand Down
16 changes: 8 additions & 8 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="hero-unit">
<h1>Join Django Sprint in Kraków!</h1>

<h2>23th and 24th of February 2013</h2>
<h2>15th and 16th of February 2014</h2>

<p>Come and join us in an effort to smash Django bugs.
We'll have room, Internet, some energy drinks and lots
Expand All @@ -19,20 +19,20 @@ <h2>23th and 24th of February 2013</h2>
<h2>Registration</h2>
<p>Help us organize this event and fill the registration form on
Eventbrite.</p>
<p><a href="https://django-sprint-krk-2013.eventbrite.com/"
<p><a href="https://django-sprint-krk-2014.eventbrite.com/"
class="btn btn-primary btn-large">Register</a></p>
</div>
<div class="span4">
<h2>Location</h2>

<p><strong>Kraków, Rynek Główny 17,
<a href="http://www.hiddendata.co/" class="external">HiddenData</a></strong></p>
<p><strong>Kraków, Wyczółkowskiego 7,
<a href="https://getbase.com/" class="external">Base</a></strong></p>

<p>We will be sprinting again from spacious office just by the main square,
a most convenient location. It's 5 minutes walk from main train station
(Kraków Główny).</p>
<p>This time we will be sprinting from spacious office just by the Błonia greens,
a very convenient location. It located near the city center, just a
short tram ride from the main station (Kraków Główny).</p>

<p>Big thanks to HiddenData for letting us in!</p>
<p>Big thanks to Base for letting us in!</p>

</div>

Expand Down

0 comments on commit 61b3e87

Please sign in to comment.