Yurim Jalynne Jin

Results 77 issues of Yurim Jalynne Jin

## 백그라운드 컬러 넣기 ![image](https://cloud.githubusercontent.com/assets/3839771/18509064/c2bbec76-7ab1-11e6-93b6-fa91778d88f1.png) ## 백그라운드 컬러 하얀색 ![image](https://cloud.githubusercontent.com/assets/3839771/18509310/d5f7511c-7ab2-11e6-8bd0-68fe941bc7fc.png)

- [ ] 이 상품을 n명의 사람들이 담았다 - [ ] 태그 수정 - [ ] 리스트 추가/삭제

원, 엔, 달러...

- https://getpocket.com/ - https://www.wunderlist.com/ko/

## 장고에서 특정 유저 토큰 가져오기 참고: http://stackoverflow.com/questions/14838128/django-rest-framework-token-authentication ``` from rest_framework.authtoken.models import Token from accounts.models import MyUser u = MyUser.objects.get(email='[email protected]') token = Token.objects.create(user=u) print(token.key) ``` 이렇게 받아온 토큰을 postman에서 -...