| Name | giri |
|---|---|
| Email Address | n/a |
| Posts | 1 |
-
- 2010-07-07 07:57:20
- Django language support
- Board » Django » Models
-
What is that it needs to inplement the language support for the following code
Using django if a text is stored in French or Hindi.How will this be stored and retrieved in a text box field
Models.py
class Details(models.Model):
title = models.CharField(max_length = 255)
html page:
<form action="/pjt/details">
<input type="text" name="nee_n"id="neen_n" />
</form>
How to store this in the db and retieve back the same .Is there any setting to be changed in settings.py


