mirror of
				https://github.com/django/django.git
				synced 2025-11-04 09:57:47 +03:00 
			
		
		
		
	Clarifies day and month in example queryset
This commit is contained in:
		
							parent
							
								
									03ad7d3c20
								
							
						
					
					
						commit
						813241f655
					
				| 
						 | 
				
			
			@ -235,14 +235,14 @@ refinements together. For example::
 | 
			
		|||
    ... ).exclude(
 | 
			
		||||
    ...     pub_date__gte=datetime.now()
 | 
			
		||||
    ... ).filter(
 | 
			
		||||
    ...     pub_date__gte=datetime(2005, 1, 1)
 | 
			
		||||
    ...     pub_date__gte=datetime(2005, 1, 2)
 | 
			
		||||
    ... )
 | 
			
		||||
 | 
			
		||||
This takes the initial :class:`~django.db.models.query.QuerySet` of all entries
 | 
			
		||||
in the database, adds a filter, then an exclusion, then another filter. The
 | 
			
		||||
final result is a :class:`~django.db.models.query.QuerySet` containing all
 | 
			
		||||
entries with a headline that starts with "What", that were published between
 | 
			
		||||
January 1, 2005, and the current day.
 | 
			
		||||
January 2, 2005, and the current day.
 | 
			
		||||
 | 
			
		||||
.. _filtered-querysets-are-unique:
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user