Avraham, I understand that the content type is not any special or complex 
for you. Probably, I should wrote "complex content type for me". Anyways, 
can you provide any instructions for how can make this kind of content type?

On Sunday, May 1, 2016 at 8:06:51 PM UTC+6, Avraham Serour wrote:
>
> what's so special about your content type? It seems you are just storing 
> text.
>
>
> On Fri, Apr 29, 2016 at 7:51 AM, Said Akhmedbayev <[email protected] 
> <javascript:>> wrote:
>
>> Need to build a content type that accepts inputs from users. Those inputs 
>> must be stored in database alone with information who entered it (user's 
>> information like user name). 
>>
>> Here is what I am looking to build:
>>
>>
>> <https://lh3.googleusercontent.com/--phehlOHbzk/VyLlOTx3biI/AAAAAAAAK9I/FrS5C-TgwNggLKEytJj-nBepT9dx0RlYgCLcB/s1600/lesson-layout.jpg>
>>
>>
>>  Here is how my models.py looks at the moment. 
>>
>> from django.contrib.auth.models import User
>> from django.db import models
>>
>>
>> # Create your models here.
>> class Unit(models.Model):
>>     unit_number = models.PositiveIntegerField(blank=True, null=True, 
>> default=1)
>>     title = models.CharField(max_length=150, blank=True, null=True)
>>     scripture_ref = models.CharField(max_length=250, blank=True, 
>> null=True)
>>
>>     def __str__(self):
>>         return self.title
>>
>>
>> class Subsection(models.Model):
>>     title = models.CharField(max_length=150, blank=True, null=True)
>>     subsection_text = models.TextField(default='SUBSECTION TEXT')
>>     unit = models.ForeignKey(Unit, on_delete=models.CASCADE)
>>
>>
>> class Question(models.Model):
>>     question_text = models.CharField(max_length=2000, default='QUESTION 
>> TEXT')
>>     subsection = models.ForeignKey(Subsection, on_delete=models.CASCADE)
>>     
>>     
>> class Answer(models.Model):
>>     answer = models.TextField(blank=True, null=True) # this field I want 
>> to store alone with question_text and answered_by fields
>>     answered_by = models.ForeignKey(User, blank=True, null=True, 
>> related_name='answers')
>>
>> I am probably asking a lot, but I hope that there will be someone who can 
>> help. My question is what should I do with models.py, forms.py and views.py 
>> to put together this kind of content type?
>>
>> Thank you in advance!
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected] <javascript:>.
>> To post to this group, send email to [email protected] 
>> <javascript:>.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/69ca76f4-a839-4113-902a-89e4b0cb0d6b%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/django-users/69ca76f4-a839-4113-902a-89e4b0cb0d6b%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/602c0205-5ebd-49b2-97bd-24a7ff003b3d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to