| Code Base
  •       Django
  •     Python
  •     JavaScript
  •     Jquery
  •     HTML
  •     CSS
  •     BootStrap
  •     ABAP
  •     SQL
Login

  • DJANGO Queryset filter using array values Django Forms : HiddenInput Django Forms : Modify form value before save DJANGO Queryset : Calculate Sum of column Django Forms : Optional field Django Forms : height of text area VisualStudioCode: Startup Kit Django Basic Project Startup Code Dajngo:Message Framework Django Models DJANG Views : CURD VisualStudioCode: Error : Class has no objects member Django View : Pass value from checkbox to view Call Javascript function from Django Template Get Selected value from dropdown list Python : Requests DJANGO Queryset Q , F Filter AJAX Call : Django Javascript DJANGO Queryset Get Last N record DJANGO Queryset create_update , get_create DJANGO Queryset Update DJANGO Queryset OrderBy Django: File upload DJANGO Queryset Last Latest DJANGO Queryset Distinct DJANGO Queryset Exclude CKEditor

DJANGO Queryset Exclude

DJANGO


folder_2 = sap_menu_area.objects.exclude(folder_2 = '').values('folder_2').distinct()
from myapp.models import Entry
from django.db.models import Q

Entry.objects.filter(~Q(id=3))

/media/uploads/2020/12/05/image_8MnDL8Y.png

            Related