Created
February 22, 2016 21:06
-
-
Save SmithWebster/b1a585a7334809d3eff5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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