pinax / symposion

a Django project for conference websites
BSD 3-Clause "New" or "Revised" License
299 stars 147 forks source link

ProposalKind model is duplicated with another feature #98

Closed miurahr closed 9 years ago

miurahr commented 9 years ago

Symposion has proposal kind model in proposals app

class ProposalKind(models.Model):
    """
    e.g. talk vs panel vs tutorial vs poster
    Note that if you have different deadlines, reviewers, etc. you'll want
    to distinguish the section as well as the kind.
    """

It is not used in pinax-project-symposion sample project. because it defined several *Proposal models such as TalkProposal, TutorialProposal and use its forms. https://github.com/pinax/pinax-project-symposion/blob/master/project_name/proposals/forms.py

It is duplicated feature.

Symposion can drop proposal kind from its model.

miurahr commented 9 years ago

symposion_ext

Here is an example diagram that deploy with TalkProposal model.

miurahr commented 9 years ago

I recognized this issue was based on my misunderstandings. I'd like to close as it is invalid.