Skip to content

Instantly share code, notes, and snippets.

@SmithWebster
Created February 22, 2016 21:06
Show Gist options
  • Save SmithWebster/b1a585a7334809d3eff5 to your computer and use it in GitHub Desktop.
Save SmithWebster/b1a585a7334809d3eff5 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
from django.core.management.base import BaseCommand, CommandError
from project.main.models import Product
class Command(BaseCommand):
help = u'Products actions'
def handle(self, *args, **options):
products = Product.objects.values('category__name', 'name', 'price')
print products
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment