python - Can't display DateField on form and initial on template with auto_now = True -


मॉडल मॉडल का नाम:

  pubDate = models.DateField ('pubDate', auto_now_add = true ) फार्म फ़ील्ड: क्लास फॉर्मनाम (forms.ModelForm): वर्ग मेटा: मॉडल = मॉडलनाम फ़ील्ड = ['pubDate']   

त्रुटि:

अज्ञात फ़ील्ड

मैं टेम्पलेट में pubDate प्रदर्शित करना चाहता हूं।

मैं फ़ॉर्म के लिए प्रयास करता हूं बहिष्कृत करें = [] । फिर सभी फ़ील्ड प्रदर्शित होते हैं लेकिन pubDate । मुझे पता नहीं क्यों?

आपको pubDate attr:

  pubDate = models.DateField ('pubDate', auto_now_add) में विशेषता जोड़ने की आवश्यकता है = सच, संपादन योग्य = गलत)    

Comments

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -