Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New footer #1

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3e8309d
Change setting for develop
NamPNQ Dec 14, 2013
899f3c5
Add readme for develop
NamPNQ Dec 14, 2013
2e2e516
Add readme for develop
NamPNQ Dec 14, 2013
fccd6a6
Add readme for develop
NamPNQ Dec 14, 2013
bb989bf
update readme for develop
NamPNQ Dec 14, 2013
7a0727e
update readme for develop
NamPNQ Dec 14, 2013
170e5a3
task "Sửa trang list event lại"
NamPNQ Dec 14, 2013
4a9c4ee
Fix check is_future_due, is_past_due
NamPNQ Dec 14, 2013
499ceaa
Add ongoing, past event in event container
NamPNQ Dec 20, 2013
75bff40
Change context processors
NamPNQ Dec 20, 2013
45a2c2f
Add context process to setting
NamPNQ Dec 20, 2013
8e702f5
Add feature ongoing, upcoming, lastest event, Fixed #1, Fixed #2
NamPNQ Dec 20, 2013
eb484c6
Change template index.html, Change function check ongoing event, Fixe…
NamPNQ Dec 22, 2013
57014fe
Add demo to database
NamPNQ Dec 22, 2013
cb23c9c
Merge branch 'develop' of github.com:gdgvietnam/gdgvietnam
Dec 24, 2013
47477bc
Change gitignore
Dec 24, 2013
2f9ec40
remove settings.py
Dec 24, 2013
9823116
remove wsgi.py
Dec 24, 2013
00a1e40
Merge branch 'master' of ssh://gitlab.cogini.com:1026/thailycuong/gdg…
Dec 24, 2013
5d9b39e
I changed footer , setting.py , css ,...
namproctin Dec 28, 2013
0615e33
I changed live youtube link with embed using js + fix fullscreen issue
namproctin Dec 29, 2013
16bd391
I add partners page html
namproctin Dec 29, 2013
068ba30
Merge with master
namproctin Dec 29, 2013
9404f13
I fix fullscreen issue + description issue + youtube link issue
namproctin Dec 29, 2013
2454d07
I changed the footer but not finish , need to adjust css more ,please…
namproctin Jan 1, 2014
e1c40eb
I fix footer correctly
namproctin Jan 1, 2014
d76e5fb
I update partners page with new images for partners
namproctin Jan 3, 2014
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions gdgvietnam/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ local_settings.py
settings.py
.idea/
static/media/
wsgi.py
24 changes: 24 additions & 0 deletions gdgvietnam/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## How to develop

Install pip, virtualenv, virtualenvwrapper

[Read tutorial](http://www.jontourage.com/2011/02/09/virtualenv-pip-basics/)

In virtualenv run

```sh
pip install -r /home/Workspace/gdgvietnam/gdgvietnam/requirements.txt
pip install -e pip install -e /home/Workspace/gdgvietnam/mezzanine-events/
```

Clone source code

```sh
git clone -b develop https://github.com/gdgvietnam/gdgvietnam.git
/home/username/.virtualenvs/gdgvietnam/bin/python /home/Workspace/gdgvietnam/gdgvietnam/manage.py runserver 8000
```

Account demo

- Username: nampnq
- Pass: 1
9 changes: 7 additions & 2 deletions gdgvietnam/context_processors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
from mezzanine_events.models import EventContainer


def all_events(request):
event_container = EventContainer.objects.all()[0]
return {'events': event_container.events}
event_container = EventContainer.objects.all()[0]
return {
'events': {'ongoing_events': event_container.ongoing_events(),
'future_events': event_container.future_events(),
'lastest_events': event_container.past_events()[:3], }}
Binary file added gdgvietnam/gdgvietnam_db
Binary file not shown.
2 changes: 2 additions & 0 deletions gdgvietnam/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mezzanine
mezzanine-events
1 change: 0 additions & 1 deletion gdgvietnam/requirements/project.txt

This file was deleted.

Loading