:)
meybe so: if i18n_supprt is True then get_object_list shuld return
content (from DB) in only on language, this in request.LANGUAGE ? else
this = i18n_default_lang.
now i make my code so:
http://groups.google.com/group/django-developers/browse_thread/thread/37c0346fb9ba1cf7
#-*- coding: utf-8 -
in my case:
class Conteiner(meta.Model):
name = meta.CharField()
class META:
admin = meta.Admin()
class Site(meta.Model):
title = meta.CharField()
con = meta.ForeginKey(Conteiner)
class META:
admin = meta.Admin()
and now when i have:
con1:
s1.lang=pl,s2.lang=en,s3=lang=de
con2:
yes, that is it :) thanks
can i do that with the lang field?? see:
http://groups.google.com/group/django-developers/browse_thread/thread/3491a40d8b680ee9
on "Multi-language support in Django" thred on this group???
if yes, then django is the best thing on the world :)
it would by nice to have a new extra field in the django admin panel
thats can work as a publish un publish poll/site/... or
publish_on_date.
now django show all stufffs in the DB, what when i have write a TEXT or
Poll and won publish it in next week??
my english is poor and ugly i know that :)
i have some idee.
my model:
from django.core import meta
from django.conf.settings import LANGUAGES
class Publication(meta.Model):
pub_name = meta.CharField(maxlength=16,verbose_name='publication
name')
class META:
admin = meta.Admin()
class Site(meta.Model):
language = meta
ok then just #1 and #65.
#1 && #41 && #65should be a part of milestone 1.0
Krzysztof Drozd