Skip to content

Commit

Permalink
cpf&sponsors: add apps
Browse files Browse the repository at this point in the history
  • Loading branch information
Kátia Nakamura committed May 7, 2018
1 parent 27adc71 commit 77554e7
Show file tree
Hide file tree
Showing 20 changed files with 45 additions and 7 deletions.
Empty file added pyconbalkan/cfp/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions pyconbalkan/cfp/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
Empty file added pyconbalkan/cfp/api_urls.py
Empty file.
5 changes: 5 additions & 0 deletions pyconbalkan/cfp/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class CfpConfig(AppConfig):
name = 'cfp'
Empty file.
3 changes: 3 additions & 0 deletions pyconbalkan/cfp/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
File renamed without changes.
3 changes: 3 additions & 0 deletions pyconbalkan/cfp/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions pyconbalkan/cfp/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.
8 changes: 4 additions & 4 deletions pyconbalkan/core/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@
</div>
<ul class="nav navbar-nav ml-auto w-100 justify-content-end mb-5 pb-3">
<li><a class="btn btn-light btn-sm round" href="/#" role="button">Home</a></li>
<li><a class="btn btn-light btn-sm round" href="/cfp" role="button">CFP</a></li>
<li><a class="btn btn-light btn-sm round" href="/sponsors" role="button">Sponsors</a></li>
<li><a class="btn btn-light btn-sm round" href="/organizers" role="button">Organizers</a></li>
<li><a class="btn btn-light btn-sm round" href="/coc" role="button">CoC</a></li>
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">About</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">News</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">CFP</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Sponsoring</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Timetable</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Travel</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Tickets</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Events</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">FAQ</a></li>#}
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Contact</a></li>#}
<li><a class="btn btn-light btn-sm round" href="/organizers" role="button">Organizers</a></li>
<li><a class="btn btn-light btn-sm round" href="/coc" role="button">CoC</a></li>
</ul>
</nav>
</div>
Expand Down
2 changes: 2 additions & 0 deletions pyconbalkan/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
'pyconbalkan.conference',
'pyconbalkan.speaker',
'pyconbalkan.organizers',
'pyconbalkan.cfp',
'pyconbalkan.sponsors',
# others
'rest_framework',
'django_countries',
Expand Down
Empty file.
3 changes: 3 additions & 0 deletions pyconbalkan/sponsors/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
3 changes: 3 additions & 0 deletions pyconbalkan/sponsors/api_urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from rest_framework import routers

router = routers.DefaultRouter()
5 changes: 5 additions & 0 deletions pyconbalkan/sponsors/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class SponsorsConfig(AppConfig):
name = 'sponsors'
Empty file.
3 changes: 3 additions & 0 deletions pyconbalkan/sponsors/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,9 @@ <h1 class="font900 font-yellow">#1</h1>

</div>
<div>
<a href="https://www.facebook.com/PyCon-Balkan-249111662300186/" target="_blank"><i class="fa-lg fab fa-facebook-f sn-icons"></i></a>
<a href="https://www.facebook.com/groups/446851262410829/" target="_blank"><i class="fa-lg fab fa-facebook-square sn-icons"></i></a>
{# <i class="fa-lg fab fa-facebook-f sn-icons"></i>#}
{# <i class="fa-lg fab fa-twitter sn-icons"></i>#}
<a href="https://www.instagram.com/pycon.blkn/?hl=sr" target="_blank"><i class="fa-lg fab fa-instagram sn-icons"></i></a>
{# <i class="fa-lg fab fa-linkedin-in sn-icons"></i>#}
</div>
</div>
</div>
Expand Down
3 changes: 3 additions & 0 deletions pyconbalkan/sponsors/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
3 changes: 3 additions & 0 deletions pyconbalkan/sponsors/views.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.shortcuts import render

# Create your views here.

0 comments on commit 77554e7

Please sign in to comment.