﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
7451	edit_inline with CharField truncates result and cause error: string index out of range	rudyryk <alexey.rudy@…>	nobody	"I'm using revision 7631, latest for now.

When using edit_inline, only first symbol from CharField is saved! This error occurs when creating new object.

And when editing existing object, error 'string index out of range' occurs.

Models are taken from tutorial. See traceback and code below.

{{{
Traceback:
File ""C:\Python25\Lib\site-packages\django\core\handlers\base.py"" in get_response
  82.                 response = callback(request, *callback_args, **callback_kwargs)
File ""C:\Python25\Lib\site-packages\django\contrib\admin\views\decorators.py"" in _checklogin
  62.             return view_func(request, *args, **kwargs)
File ""C:\Python25\lib\site-packages\django\views\decorators\cache.py"" in _wrapped_view_func
  44.         response = view_func(request, *args, **kwargs)
File ""C:\Python25\Lib\site-packages\django\contrib\admin\views\main.py"" in change_stage
  338.             new_object = manipulator.save(new_data)
File ""C:\Python25\Lib\site-packages\django\db\models\manipulators.py"" in save
  166.                         if rel_new_data[related.opts.pk.name][0]:

Exception Type: IndexError at /admin/my_hello/poll/1/
Exception Value: string index out of range
}}}

{{{
#!python
from django.db import models
import datetime

# Create your models here.

class Poll(models.Model):
	question = models.CharField(max_length=200)
	pub_date = models.DateTimeField('date published')
	class Admin:
		pass
	def __unicode__(self):
		return self.question

class Choice(models.Model):
	poll = models.ForeignKey(Poll, edit_inline=models.TABULAR, num_in_admin=3)
	choice = models.CharField(max_length=200, core=True)
	class Admin:
		pass	
	def __unicode__(self):
		return self.choice
}}}"		closed	Uncategorized	dev		worksforme		alexey.rudy@…	Unreviewed	0	0	0	0	0	0
