여자친구가 소개한 영화 어플 - 너무 유용하고 좋아요.
모든 극장, 모든 영화 정보
영화의 느낌을 한눈에 알려주는
"버즈니 영화 가이드"
사용자 목소리
★ 영화 보기 앱 '버즈니', 키워드+소셜 리뷰 종결자 by 이빈나 @ twitter
★ 버즈니 리뷰보는 맛도 있고 예매연결도 해주는것도 괜찬더라고요 ㅋㅋ by jeankim89 @twitter
★ 영화관련 어플로는 모두가 써보시면 단번에 아실수있듯이 '버즈니'가 최고인듯. 사용자들의 오감을만족시키는 어플!! by 9second @twitter
메인 화면
상영작 버튼을 클릭하면 아래와 같은 화면이 보입니다.
"분노의 질주" 영화를 선택
영화의 느낌을 한눈에 알수 있는 태그 클라우드가 뜹니다.
영화의 느낌을 한눈에 알수 있어서 전 개인적으로 맘에 듭니다.
밑으로 스크롤을 하면 Twitter, Facebook 유저들이
남긴 생생한 리뷰도 볼수있습니다.
여성 유저가 좀 더 많은것 같아요.
극장 탭을 클릭하면, 극장 시간정보도 볼수 있고
하이라이트된 버튼을 클릭하면 예매까지 가능합니다.
심심할때 좋은 영화 중에서 내가 못본 영화 없는지 살펴보고
리뷰도 보면서 시간 떼우기 좋은것 같아요.
리뷰 메뉴에서는 사용자들이 올린 리뷰를 실시간으로 볼수 있고
내 Facebook, Twitter로 로그인 하면 내 지인들이
어떤 리뷰를 썼는지도 확인할수 있습니다.
이상은 "버즈니 영화 가이드"에 대한 간단한 소개이며
영화어플은 이거 하나로 충분한것 같습니다
'버즈니' 카테고리의 다른 글
| 여자친구가 소개한 영화 어플 - 너무 유용하고 좋아요. (0) | 2011/05/03 |
|---|
media_url을 이용하여 매번 서버에 css를 올릴필요없이 바로 로컬에서 사용하기
To take advantage of the MEDIA_URL in the settings.py file for hosting your static media on a separate server, you need to do a little internal work on your templates and some work to make that setting available to the templates.
Inside a template, where you would normally have:
blah blah <img src="/img/foo.jpg" alt="this is a foo"> blah blah..
You would instead insert {{media_url}} so that it would look like:
blah blah <img src="{{media_url}}/img/foo.jpg" alt="this is a foo"> blah blah..
It generally requires a big search and replace the first time you implement it. After that, seeing other references in the templates has been enough to remind me to use {{media_url}} before any static content.
We could pass {{media_url}} in through each view, but since we'll want it throughout the site, it's often easier to set up a simple context processor to do the heavy lifting.
Here's a example snippet from a context process:
from myproject import constants
from django.conf import settings
def common(request):
ctx = {}
ctx['constants'] = constants
ctx['media_url'] = settings.MEDIA_URL
... more stuff here ...
return ctx
Then in the settings.py under TEMPLATE_CONTEXT_PROCESSORS, we added:
"myproject.context_processors.common",
and from there, the MEDIA_URL in settings.py became available in all templates as {{media_url}}.
Note: There is a default media context processor since revision 5379 and will be included in version 0.97 once it is released. See http://code.djangoproject.com/changeset/5379. You can access using {{ MEDIA_URL }} in your templates.
'파이썬' 카테고리의 다른 글
| media_url을 이용하여 매번 서버에 css를 올릴필요없이 바로 로컬에서 사용하기 (0) | 2008/12/29 |
|---|---|
| Setup script exited with error: command 'gcc' failed with exit status 1 (0) | 2008/12/23 |
Setup script exited with error: command 'gcc' failed with exit status 1
http://plone.org/support/forums/setup#nabble-td351958
'파이썬' 카테고리의 다른 글
| media_url을 이용하여 매번 서버에 css를 올릴필요없이 바로 로컬에서 사용하기 (0) | 2008/12/29 |
|---|---|
| Setup script exited with error: command 'gcc' failed with exit status 1 (0) | 2008/12/23 |


