Skip to content

Commit 77554e7

Browse files
author
Kátia Nakamura
committed
cpf&sponsors: add apps
1 parent 27adc71 commit 77554e7

File tree

20 files changed

+45
-7
lines changed

20 files changed

+45
-7
lines changed

pyconbalkan/cfp/__init__.py

Whitespace-only changes.

pyconbalkan/cfp/admin.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.contrib import admin
2+
3+
# Register your models here.

pyconbalkan/cfp/api_urls.py

Whitespace-only changes.

pyconbalkan/cfp/apps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from django.apps import AppConfig
2+
3+
4+
class CfpConfig(AppConfig):
5+
name = 'cfp'

pyconbalkan/cfp/migrations/__init__.py

Whitespace-only changes.

pyconbalkan/cfp/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.db import models
2+
3+
# Create your models here.

pyconbalkan/cfp/tests.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.test import TestCase
2+
3+
# Create your tests here.

pyconbalkan/cfp/views.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from django.shortcuts import render
2+
3+
# Create your views here.

pyconbalkan/core/templates/home.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,18 @@
5454
</div>
5555
<ul class="nav navbar-nav ml-auto w-100 justify-content-end mb-5 pb-3">
5656
<li><a class="btn btn-light btn-sm round" href="/#" role="button">Home</a></li>
57+
<li><a class="btn btn-light btn-sm round" href="/cfp" role="button">CFP</a></li>
58+
<li><a class="btn btn-light btn-sm round" href="/sponsors" role="button">Sponsors</a></li>
59+
<li><a class="btn btn-light btn-sm round" href="/organizers" role="button">Organizers</a></li>
60+
<li><a class="btn btn-light btn-sm round" href="/coc" role="button">CoC</a></li>
5761
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">About</a></li>#}
5862
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">News</a></li>#}
59-
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">CFP</a></li>#}
60-
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Sponsoring</a></li>#}
6163
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Timetable</a></li>#}
6264
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Travel</a></li>#}
6365
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Tickets</a></li>#}
6466
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Events</a></li>#}
6567
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">FAQ</a></li>#}
6668
{# <li><a class="btn btn-light btn-sm round" href="#" role="button">Contact</a></li>#}
67-
<li><a class="btn btn-light btn-sm round" href="/organizers" role="button">Organizers</a></li>
68-
<li><a class="btn btn-light btn-sm round" href="/coc" role="button">CoC</a></li>
6969
</ul>
7070
</nav>
7171
</div>

0 commit comments

Comments
 (0)