Skip to content

Instantly share code, notes, and snippets.

@jumbojet
Created December 9, 2014 19:12
Show Gist options
  • Save jumbojet/40a75c34cecb73ad7763 to your computer and use it in GitHub Desktop.
Save jumbojet/40a75c34cecb73ad7763 to your computer and use it in GitHub Desktop.
Sort and Get top 5 latestinstances
class Employee(models.Model):
name=models.CharField(max_length="50")
created_datetime = models.DateTimeField()
@staticmethod
def get_n_latest(n):
employeeList = Employee.objects.all().order_by('-created_datetime')
return employeeList[:n]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment