codeeu / coding-events

A Django app for adding EU Code Week events and showing them on a map.
http://events.codeweek.eu
MIT License
17 stars 36 forks source link

Remove only-EU country limitation #416

Closed michelesr closed 8 years ago

michelesr commented 8 years ago

Authorized by Alessandro Bogliolo

mitio commented 8 years ago

@michelesr Nice! :) Thanks! Will push it live now to see if it works.

mitio commented 8 years ago

Okay, @michelesr, after deploying live (yay for testing on production) we have an issue that all countries are listed on the homepage and we're missing the flags for most of them:

https://www.dropbox.com/s/xdqil3hq78esjmt/Screenshot%202015-09-28%2015.23.35.png?dl=0

Are you able to dig up flags for these and put them in the repo and send a new PR?

michelesr commented 8 years ago

Well... a filter for country with count of events >= 1 should be appropriated, so that flags for out of Europe countries can be added later by someone else.

I'll work on this

michelesr commented 8 years ago

Is there a way (such as bower install or similar) to install static files? In my local environment the interface is missing static files.

mitio commented 8 years ago

This would be a good start. Thanks again!

mitio commented 8 years ago

As for the static files, after you've activated a virtual env and installed the dependencies (pip install -r requirements.txt), maybe these would help you:

./manage.py collectstatic --noinput
./manage.py compress

Or are you missing other files?

michelesr commented 8 years ago

After launching the first command i only miss .png files associated with flags

Now the page renders good. Thank You @mitio