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

Commit

Permalink
Add basic templates and draggable events for base & calendar page
Browse files Browse the repository at this point in the history
  • Loading branch information
JayKan committed Feb 16, 2014
1 parent 990e64d commit 562058f
Show file tree
Hide file tree
Showing 29 changed files with 4,023 additions and 27 deletions.
Binary file modified boardinator_site/boardinator/db.sql
Binary file not shown.
4 changes: 0 additions & 4 deletions boardinator_site/boardinator/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
urlpatterns = patterns('',
## App URL include
url(r'^', include('boardinator_app.appurls')),

## Static Links
#url(r'^', TemplateView.as_view(template_name='home.html'), name='home'),

)

if settings.DEBUG:
Expand Down
8 changes: 7 additions & 1 deletion boardinator_site/boardinator_app/appurls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,11 @@
from django.contrib.auth.views import login, logout

urlpatterns = patterns('boardinator_app.views',
url(r'^$', 'index', name='index'),
url(r'^$', 'index', name='index'),
url(r'^task/', 'task', name='task'),
url(r'^calendar/', 'calendar', name='calendar'),
)




11 changes: 10 additions & 1 deletion boardinator_site/boardinator_app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@
from django.template import loader, RequestContext
from django.views.decorators.csrf import csrf_exempt


def index(request):
return render(request, "index.html", locals())

def task(request):
return render(request, "task.html", locals())

def calendar(request):
return render(request, "calendar.html", locals())




Binary file added boardinator_site/media/.DS_Store
Binary file not shown.
395 changes: 395 additions & 0 deletions boardinator_site/media/css/font-awesome-min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 562058f

Please sign in to comment.