Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
for item in ingred: queryset = queryset.filter(ingredients__name__icontains="item")
Recipe.objects.filter(ingredients_id__in = [1,2 ])
@admin.register(About) class AboutAdmin(admin.ModelAdmin): ....
admin.site.register(Advertisement)
@register.simple_tag def your_custom_tag_django (url): return "window.location='" + url +"';
<form action="/add/book" method="post">{% csrf_token %} {{ form }} <button onclick="{% your_custom_tag_django '/books' %}">Cancel</button> <button type="submit">OK</button> </form>
Userlevel .objects.filter(lvlxp__lte=UserXp)
# может это имеете ввиду def list_user(request): names = UserProfil.objects.all().order_by('-id')[:2]
obj = Model.filter(params).first() if obj is None: