Models.py:
class Discussion(models.Model):
version = models.TextField(blank=True)
team = models.TextField(blank=True)
project = models.TextField(blank=True)
notes = models.TextField(db_column='Notes', blank=True) # Field name made lowercase.
s = models.TextField(blank=True)
send_mail_to = models.TextField(blank=True)
send_mail_cc = models.TextField(blank=True)
date = models.DateTimeField(null=True, blank=True)
class Meta:
db_table = u'discussion'
views.py:
p=Discussion.objects.filter(version=m2)
return render_to_response('report/t2',{"p":p})
Template(html):
<tr>
<td width="20%" class="scratchblackfont12">Release Name :</td>
<td><div style="overflow:auto"><input name="Release Name (if any ):" autocomplete="on" type="text" class="scratchsearchfield" elname="defaultFocus" id="r1" value="{{p.version}}" READONLY multiline="true" ></div>
</td>
</tr>
But the template displays Nothing.Please help me to solve this problem.I want to get the model field value from model object in template.
That’s because the
pthat you’re sending to your view is a QuerySet, not an object instance. Try the following:If you’d like to send a specific
pobject instance you’d have to do the following in your view:but note that
getwill throw an error if the query returns more than a single object with version=m2.