JeongWoo Choi
JeongWoo Choi
`views.py` ``` from el_pagination.views import AjaxListView from clien.models import ClienPost class ClienListView(AjaxListView): model = ClienPost context_object_name = "posts" template_name = "clien/clien_list.html" page_template = 'clien/clien_list_page.html' def get_queryset(self): posts = ClienPost.objects.active() return...
I have list of post where each post should be affected by some `css` or `js` files. Let say these script files are: `bootstrap-toggle.css` and `bootstrap-toggle.js`. I wonder where I...
I just followed **django-autocomplete-light tutorial**, and it works very well in local mode. Only problem is, it shows this kind of error in browser: `Uncaught ReferenceError: jQuery is not defined...
 I don't understand why are 4.2, 4.2.1 foldable? It was supposed to be not because it has no content....? I'm faced with this...
If I have 3 gpus and want to specify gpu id, how can I set that?
## Checklist - [O] I have included information about relevant versions - [O] I have verified that the issue persists when using the `master` branch of Faust. I have a...
The reason to add these args is the way item exporter created is always fixed(hard coded). Due to this, if I want to change the topic name in creating Pubsub...
**Describe the bug** I'd like to mount host's aws credential to astro airflow container, but it can't recognize it. **What CLI Version did you experience this bug?** Astro CLI Version:...
좌석이 있는 경우에 대해서 매크로를 돌려도 트럼펫 소리가 나지 않습니다
I use `selenium` for the functional test. I also use `django-pipeline` for loading static fils. Problem is that selenium with `StaticLiveServerTestCase`(`from django.contrib.staticfiles.testing import StaticLiveServerTestCase`) could not load static files. ref...