Django自动删除空格后的字符

时间:2017-05-23 11:12:14

标签: django django-templates

我将元组列表从视图传递给模板。如果找到空格,则打印元组的每个元素,然后Django会自动删除空格后的字符。 这是我的view.py

     def index(request):
            user_statuses = get_user_status()
            user_statuses.sort(key=lambda user_statuses: 
            datetime.datetime.strptime(user_statuses[0], '%Y-%m-%d'),reverse=True)

            return render(request, 'view_status.html', {'lists': user_statuses

})

这是我的模板:

<table>
   <thread>
   <th bgcolor="#35a5f0">
   <td bgcolor="#35a5f0">Date</td>
   <td bgcolor="#35a5f0">Project</td>
   <td bgcolor="#35a5f0">Release</td>
   <td bgcolor="#35a5f0">Feature</td>
   <td bgcolor="#35a5f0">Module name</td>
   <td bgcolor="#35a5f0">Hours spent</td>
   <td bgcolor="#35a5f0">Comment</td>
   </th>
   </thead>
   <tbody>
      {%for list in lists%}
      <tr>
         <td><input type="checkbox" name="vehicle"></td>
         {%for i in list%}
         <td><input type="text"  value={{i}}><br></td>
         {% endfor %}
      </tr>
      {% endfor %}
   </tbody>
</table>

我的元组列表如下:

[(u'2017-05-02', u'Web Design', u'1', u'UT', u'Redundancy', u'1', u'Add extra information'), (u'2017-05-01', u'Web Design', u'1', u'UT', u'Redundancy', u'1', u'Add extra information')]

我的输出如下enter image description here

因为你可以在忽略空格后看到字符。 请帮忙。

1 个答案:

答案 0 :(得分:2)

尝试在html中添加{{i}}周围的引号。