ListField is showing <ul> instead of <input> in edit/create post
问题 I am using Flask, mongoengine for a project and I am trying to get basic stuff working from http://docs.mongodb.org/manual/tutorial/write-a-tumblelog-application-with-flask-mongoengine/ After implementing everything from above link I added a new field for "tags" in Post and when I try to create a post, my tags doesn't show a input box. Any help is appreciated. My code and screenshot below class Post(db.DynamicDocument): created_at = db.DateTimeField(default=datetime.datetime.now, required