Corey Oordt

Results 56 comments of Corey Oordt

I think you've planned your schema out incorrectly. From the looks of it, you really don't need to have Artist subclass CategoryBase, you could just subclass `models.Model`. You have a...

Yes, I think so. You need to create your own ManyToManyField, just I like you'll see in fields.py. ``` class CategoryM2MField(ManyToManyField): def __init__(self, **kwargs): if 'to' in kwargs: kwargs.pop('to') super(CategoryM2MField,...

No, it shouldn't. In fact, most of the tags use the MPTT fields on the model. Is there a particular template tag that you think requires a model named Category?...

Actually, I think you are right. I'm currently refactoring them and adding an optional using app.Model parameter for the tags. Also better documentation. Just finishing up the testing now. The...

It looks like there is an error in the add_category_fields command. I'll get this fixed right away

@variable Can you check the latest commit to see if it solves your problem?

@PetrDlouhy I have a [branch](https://github.com/jazzband/django-categories/pull/165) that should fix these issues. Can you review it and see if you think it is ready for merging, and I can merge it in....

Is there a sample import or test item I could look at to test against?

I get this error at startup: > Plugin error: File '~/Library/Application Support/JetBrains/Toolbox/apps/PyCharm-P/ch-0/212.4746.96/PyCharm 2021.2 EAP.app.plugins/EnvFile/lib/envfile-3.2.1.jar' contains invalid plugin descriptor

D'oh! 😊 Sorry about that.