Re: Problem With Templatetags

2011-07-28 Thread nicolas HERSOG
Did you create an empty file __init__.pyc in your tag folder ? On Thu, Jul 28, 2011 at 8:51 AM, Showket Bhat wrote: > Thanks For ur Assistance.. But That Dosen't Helped me... Need Some > Other Solution.. > > -- > You received this message because you are subscribed to the Google Groups > "Django

Re: Problem With Templatetags

2011-07-28 Thread nicolas HERSOG
In my tag folder i have __init__.py __init__.pyc myTag.py et myTag.pyc which is empty On Thu, Jul 28, 2011 at 9:02 AM, nicolas HERSOG wrote: > Did you create an empty file __init__.pyc in your tag folder ? > > > On Thu, Jul 28, 2011 at 8:51 AM, Showket Bhat > wrote: > >> Thanks For ur Assistanc

Re: Problem With Templatetags

2011-07-28 Thread Showket Bhat
yes I have done that..Do i need to put anything in settings.py -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubs

Error Please Help

2011-07-28 Thread Showket Bhat
Hi All, I am using templatetags to create one tag.. I created the folder templatetags and created 2 files in it.. __init__.py which is empty and another temp_tags.py.. where i put one method temp_tags.py from django import template register = template.Library() register.filte

Aw: Re: Problem With Templatetags

2011-07-28 Thread Juergen Schackmann
have you added the application that holds your template tag to settings.py? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/pgqWMXKi-UsJ. To post to this gr

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread Benedict Verheyen
On 28/07/2011 2:28, Lachlan Musicman wrote: > On Wed, Jul 27, 2011 at 16:53, kenneth gonsalves > wrote: >> On Tue, 2011-07-26 at 15:09 +0100, Tom Evans wrote: >>> I strongly disagree, i18n and l10n have explicit and well known >>> technical meanings, dating from the late 80s. It is right and prop

Re: Doesn't render templates any longer

2011-07-28 Thread Benedict Verheyen
On 27/07/2011 23:39, Max Bachl wrote: > Hi all! > I've encountered a strange bug today. > I want to return an HTTP response with this code: > > def main(request): > t = loader.get_template("main/start.html") > return HttpResponse(t) > > However, the only result I get is > > > > <

Re: Problem With Templatetags

2011-07-28 Thread bruno desthuilliers
On Jul 28, 8:17 am, Showket Bhat wrote: > Hi All, > > I am using templatetags to create one tag.. Actually (according to your code snippet) a filter. > I created the folder > templatetags and created 2 files in it.. __init__.py which is empty > and another temp_tags.py.. where i put one method

Re: Problem With Templatetags

2011-07-28 Thread bruno desthuilliers
On Jul 28, 8:39 am, nicolas HERSOG wrote: > Hi, I m new in django too but i ll try to help you. That's nice from you, but you should possibly read the post you're answering a bit more carefully: > In your tem_tag.py can you add : @register.simle_tag just before you def you > tag, just like this

Re: Problem With Templatetags

2011-07-28 Thread Showket Bhat
Thanks A Lot, U know I did the same thing as u said and put it in Installed APP in settings and It Worked..Dats great..U know I somewre found on net that there is nothing to deal with settings .py and tags... Dats rediculas.. Anyways thank you -- You received this message because you are subscri

Re: Problem With Templatetags

2011-07-28 Thread bruno desthuilliers
On Jul 28, 9:02 am, nicolas HERSOG wrote: > Did you create an empty file __init__.pyc in your tag folder ? That's actually a __init__.py (*not* .pyc). And yes, the OP did and explicitely mentionned it. -- You received this message because you are subscribed to the Google Groups "Django users

Re: Problem With Templatetags

2011-07-28 Thread bruno desthuilliers
On Jul 28, 9:03 am, nicolas HERSOG wrote: > In my tag folder i have __init__.py __init__.pyc myTag.py et myTag.pyc which > is empty Err... is this actually 'myTag.py' or 'temp_tags.py' ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: Error Please Help

2011-07-28 Thread bruno desthuilliers
Please don't post the same question twice or more - this isn't going to get you more help. On Jul 28, 9:24 am, Showket Bhat wrote: > Hi All, > > I am using templatetags to create one tag.. I created the folder > templatetags and created 2 files in it.. __init__.py which is empty > and another tem

Re: Admin - change ForeignKey display text

2011-07-28 Thread Uros Trebec
You should take a look at the Django documentation once more, somewhere around this area: https://docs.djangoproject.com/en/1.3/ref/models/instances/#django.db.models.Model.__unicode__ -- Uros On Jul 27, 10:59 pm, galgal wrote: > How can I change the display text in select while selecting a fiel

Re: Problem With Templatetags

2011-07-28 Thread nicolas HERSOG
https://docs.djangoproject.com/en/dev/howto/custom-template-tags/ It was just an exemple I gave to Showket, and you'r right, we don t need a __init__.pyc in the templateTag folder. I tried to help Showket but i m quite too unexperiment for it yet :) On Thu, Jul 28, 2011 at 10:21 AM, bruno desthui

Re: Extending Reusable App Models

2011-07-28 Thread Benedict Verheyen
On 27/07/2011 23:29, Django Grappelli wrote: > Hi All, > I'm working with a reusable Django application which defines a model that I'd > like to extend. I've read through the documentation on model > inheritance > > but

Re: Extending the ManyToMany relation, maybe a bad idea

2011-07-28 Thread Tom Evans
On Thu, Jul 28, 2011 at 3:37 AM, Joshua Russo wrote: > I keep thinking I'm doing something wrong here. From the lack of responses I > feel like there is no real good way to handle a group of options with > additional relational data. Or alternatively, no-one understood what you were trying to do

hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread Coulson Thabo Kgathi
this error came after i put this : jango.contrib.staticfiles in the installed apps i wanted to put a picture in my template so whne runing the server i got the error Error: No module named staticfiles -- You received this message because you are subscribed to the Google Groups "Django users"

Nested: transaction.commit_on_success and django 1.3

2011-07-28 Thread Gelonida N
Hi, I have a specific function with an transaction.commit_on_success @transaction.commit_on_success def f1(): with transaction.commit_on_success: do_stuff() change_model_data_1 . . ,\. and I have now another function def f2(): change_other_model_data() f1() Now I would

Re: hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread Tom Evans
On Thu, Jul 28, 2011 at 10:56 AM, Coulson Thabo Kgathi wrote: > this error came after i put this : jango.contrib.staticfiles in the > installed apps > > i wanted to put a picture in my template so whne runing the server i > got the error > >  Error: No module named staticfiles > staticfiles is in

SyntaxError at /view.py

2011-07-28 Thread morning yao
Environment: Request Method: GET Request URL: http://127.0.0.1:8000/view/ Django Version: 1.3 Python Version: 2.7.2 Installed Applications: ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.stat

Extending new User form

2011-07-28 Thread Shegoroa
I am having difficulty figuring out how to make an admin when creating a new user to have an extra field specifying users location. I found lots of information on how to extend the user profile and i did so (source of information) http://stackoverflow.com/questions/44109/extending-the-user-model-w

Issues during installation of Django

2011-07-28 Thread Dargoan
Hello, I'm new at Django. I have some issues installing Django. After I download Django 1.3 as the website describes, when I launch "setup.py install" in my command tool (on Windows XP), it does not run the script, but instead Vim opens it. I'm totally new in python word either, so it may be a stu

Extending the User form

2011-07-28 Thread Sheogora
I have extended the User Profile by adding my own field, how do I change the New user form in the admin, to show the new field? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. T

Re: SyntaxError at /view.py

2011-07-28 Thread Tom Evans
On Thu, Jul 28, 2011 at 12:27 PM, morning yao wrote: > DailyReport.objects.filter(DailyReport_Timestamp__month=int(month.split('-') > [0]),DailyReport_Timestamp__month=int(month.split('-')[1])).order_by("- > DailyReport_Timestamp") > > so,where is error? > You can't supply the same argument twice

Re: Issues during installation of Django

2011-07-28 Thread Tom Evans
On Thu, Jul 28, 2011 at 10:06 AM, Dargoan wrote: > Hello, > > I'm new at Django. I have some issues installing Django. > After I download Django 1.3 as the website describes, when I launch > "setup.py install" in my command tool (on Windows XP), it does not run > the script, but instead Vim opens

Re: SyntaxError at /view.py

2011-07-28 Thread kenneth gonsalves
On Thu, 2011-07-28 at 04:27 -0700, morning yao wrote: > DailyReport.objects.filter(DailyReport_Timestamp__month=int(month.split('-') > [0]),DailyReport_Timestamp__month=int(month.split('-')[1])).order_by("- > DailyReport_Timestamp") it is here - keyword repeated. -- You received this message be

Re: hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread Coulson Thabo Kgathi
how can i updadte django i tried and if failed, pliz help -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...

Re: hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread kenneth gonsalves
On Thu, 2011-07-28 at 14:13 +0200, Coulson Thabo Kgathi wrote: > how can i updadte django i tried and if failed, pliz help how did you install django? what distro? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send emai

Re: Extending the ManyToMany relation, maybe a bad idea

2011-07-28 Thread Joshua Russo
Ya, sorry, I was just getting frustrated because I was taking longer than I wanted to implement this. The formset is what I ended up with. The tricky part is still that I want a defined list of options in the formset, so I can't just make it a model formset. I haven't worked in Django in a while

Admin model listing custom ordering

2011-07-28 Thread Vinicius Massuchetto
I got a model with a ForeignKey field, and I want the default listing of this model to be ordered by this field. I get the correct `qs.query` SQL statement, but for some reason the admin listing is not following it. This is what I've done so far: class SomeAdminModel(admin.ModelAdmin):

[gripe] Pain on OSX

2011-07-28 Thread Kolbe
Is it just me, or is it that painful just to get Django running on OSX? During development, I had problems with Mysql_db. More or less got that solved, and been reading postgre is more or less the preferred choice? Anyway, for most of development, I've been just using sqlite. Now I have problems

Re: Django + PyPy = ?

2011-07-28 Thread Bill Freeman
So what happens if you type while pypy-dist/bin is not the current directory.: /absolute/path/to/pypy-dist/bin/pypy Error or no? If no error, how about, while cd'ed to your django project (where settings.py and manage.py are: /absolute/path/to/pypy-dist/bin/pypy manage.py shell Error or n

Re: [gripe] Pain on OSX

2011-07-28 Thread Shawn Milochik
I've never had a problem with Django on OS X. I have had problems with psycopg2 due to the default Python that comes with OS X, but if you recompile Python you're fine. I don't use MySQL or Apache. In any case, it sounds like your complaints have nothing to do with OS X. Having said that, various

Re: Pain on OSX

2011-07-28 Thread Kolbe
lol. what's your recommended build for OSX though if I were to use django? On Jul 28, 9:41 pm, Shawn Milochik wrote: > I've never had a problem with Django on OS X. I have had problems with > psycopg2 due to the default Python that comes with OS X, but if you > recompile Python you're fine. I do

Satchmo, the bloated manatee

2011-07-28 Thread Bobby Roberts
satchmo has become a bloated manatee of a codebase. Does anyone know why it run so slowly now? Or, do you have to feed it treats or something secretive to get it running properly? I've got two satchmo sites on a 256mb slice at slicehost and they are pretty much unusable at the moment. -- You r

Re: Pain on OSX

2011-07-28 Thread Shawn Milochik
On Thu, Jul 28, 2011 at 10:08 AM, Kolbe wrote: > lol. > > what's your recommended build for OSX though if I were to use django? > I don't know what you mean by 'build,' but my standard setup was compiling my own Python (requires installing XCode) and using PostgreSQL (using the EnterpriseDB inst

djangoadvent.com is down ?

2011-07-28 Thread Lorenzo Franceschini
Hi, some time ago I bookmarked some posts on http://djangoadvent.com that seemed very interesting to me; yesterday I wanted to read some of them, but I wasn't able to retrieve them. The website was unreacheable, and I was able to found a cached version of only a few of them. Do you know anyt

Re: Pain on OSX

2011-07-28 Thread william ratcliff
I also recommend the enterprisedb distribution. I don't recall rebuilding python for snow lion, but it's been awhile...I have also noticed that sqllite does not enforce all constraints, so it's good to start with postgres sooner rather than later...I can't help you with apache... William On Thu

Re: Pain on OSX

2011-07-28 Thread Andre Terra
Not to mention SQLite's 'Database is locked' issue.. I too recommend postgres. Cheers, AT On Thu, Jul 28, 2011 at 11:55 AM, william ratcliff < william.ratcl...@gmail.com> wrote: > I also recommend the enterprisedb distribution. I don't recall rebuilding > python for snow lion, but it's been aw

[OFF] Job Opportunity at São Paulo - SP - Brazil

2011-07-28 Thread Rogerio Carrasqueira
Hello Everybody! We have a job opportunity to work with us at Direct Flow/Performance, to join us please send your resumée to *va...@directflow.com.br or va...@directperformance.com.br* If you are hard coder and don't disguise it and you are a member from many foruns about frameworks and tech tal

Re: Extending new User form

2011-07-28 Thread Derek
On Jul 28, 10:31 am, Shegoroa wrote: > I am having difficulty figuring out how to make an admin when creating > a new user to have an extra field specifying users location. > > I found lots of information on how to extend the user profile and i > did so > (source of > information)http://stackover

Re: Django open source cashflow management app

2011-07-28 Thread Derek
On Jul 28, 5:27 am, zodman wrote: > the app is back :) Oops! Google Chrome could not find misgastos.zodman.com.mxits Looks like: http://misgastos.zodman.com.mx/ is the correct URL! -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: Pain on OSX

2011-07-28 Thread Kolbe
thanks for the pointers guys! really really helpful On Jul 28, 11:05 pm, Andre Terra wrote: > Not to mention SQLite's 'Database is locked' issue.. I too recommend > postgres. > > Cheers, > AT > > On Thu, Jul 28, 2011 at 11:55 AM, william ratcliff < > > > > > > > > william.ratcl...@gmail.com> wrot

Re: Django open source cashflow management app

2011-07-28 Thread Derek
On Jul 28, 5:33 pm, Derek wrote: > On Jul 28, 5:27 am, zodman wrote: > > > the app is back :) > > Oops! Google Chrome could not find misgastos.zodman.com.mxits > > Looks like:http://misgastos.zodman.com.mx/ > is the correct URL! But unfortunately, the registration does not work :( -- You recei

Re: [gripe] Pain on OSX

2011-07-28 Thread Andy Dustman
My development setup is: Snow Leopard X-Code MacPorts Python-2.6 via MacPorts MySQLdb via MacPorts MySQL server on an Ubuntu VM (mimics production) Django-1.3 via virtualenv easy_install WingIDE or Django internal HTTP server Production (and pre-production testing) is on Ubuntu Lucid, Apache, mod

Re: Import error

2011-07-28 Thread sakthi vel
Ha ha. not needed. i solved my problem. By the way if you want assistance, post me. its absolutely free. On Wed, Jul 27, 2011 at 3:36 AM, bruno desthuilliers < bruno.desthuilli...@gmail.com> wrote: > On 26 juil, 18:59, shakthi wrote: > > i am implementing the django admin interface in my site. >

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread Lucy Brennan
Before I comment, I would like to actually know if I got it right. In Django: USE_I18N: translation USE_L10N: localized formatting Right? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread Masklinn
On 2011-07-28, at 18:37 , Lucy Brennan wrote: > Before I comment, I would like to actually know if I got it right. In > Django: > > USE_I18N: translation > USE_L10N: localized formatting > > Right? yes. -- You received this message because you are subscribed to the Google Groups "Django users

Re: Pain on OSX

2011-07-28 Thread Bruno Tikami
On Thu, Jul 28, 2011 at 12:35 PM, Kolbe wrote: > thanks for the pointers guys! really really helpful > > Kolbe, have you updated your Xcode ? If not, do so in order to have your gcc updated/compatible with Lion. I had problems with pycrypto and beautifulsoup that were gone after updating xcode. C

Transform model field to custom form field when creating from instance

2011-07-28 Thread Arkaitz Jimenez
Hi, I created a PostForm, ModelForm for Post model that has a ManyToMany relationship with a model called Test, I use a CharField and a clean_test(): to convert the comma separated list of test names to a list of Test objects and this works perfectly. Now, when I want to use the PostForm for edit

save_m2m and primary key.

2011-07-28 Thread GP
Hello, I am creating a new backend with jbase database using jython and zxjdbc. The new backend works fine (mostly). Able to login to admin page. completed the "web poll" application from documentation. I face proble with save_m2m. Lets say when I want to create a group. The django gives error th

Re: Admin model listing custom ordering

2011-07-28 Thread christian.posta
Is this something that can work for you? https://docs.djangoproject.com/en/1.3/ref/models/options/#order-with-respect-to If not, then the only thing i can do is recommend you review the source code for how the ordering happens in the admin module for a model. The main spots to look at would be t

about django

2011-07-28 Thread Ghanshyam Pandey
Hello, i want to learn django, but from where to start, I do not know. Would you please help me? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from t

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread Lucy Brennan
Did anybody read the links I supplied. Or maybe you were busy plussing on Google+ :) So there seems to be two pairs of definitions for I18N / L10N: a) I18N / L10N ~ (building software so ready to be locale-language-customized / making a specific localized version ) b) I18N / L10N ~ (translat

Re: about django

2011-07-28 Thread NISA BALAKRISHNAN
django book On Thu, Jul 28, 2011 at 9:27 PM, Ghanshyam Pandey wrote: > Hello, > > i want to learn django, but from where to start, I do not know. > > > Would you please help me? > > Thanks > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. >

Re: about django

2011-07-28 Thread Carsten Jantzen
There is a good tutorial: https://docs.djangoproject.com/en/1.3/intro/tutorial01/ I would recommend you start with that, I did and it was a good starting point. /Carsten 2011/7/28 Ghanshyam Pandey : > Hello, > > i want to learn django, but from where to start, I do not know. > > > Would you ple

Re: about django

2011-07-28 Thread Mitesh Patel
Hi GPA, Starts with here https://docs.djangoproject.com/en/1.3/ Thanks, Mitesh Patel On 28 July 2011 23:19, NISA BALAKRISHNAN wrote: > django book > > > On Thu, Jul 28, 2011 at 9:27 PM, Ghanshyam Pandey wrote: > >> Hello, >> >> i want to learn django, but from where to start, I do not know.

Re: Satchmo, the bloated manatee

2011-07-28 Thread Jacob Kaplan-Moss
On Thu, Jul 28, 2011 at 7:15 AM, Bobby Roberts wrote: > satchmo has become a bloated manatee of a codebase. Hey, this isn't OK. I can tell you're frustrated, but insulting other people's work isn't acceptable around here. You should realize there are real people, just like you, on the other side

Re: about django

2011-07-28 Thread Furqan Rauf
I think tutorial would be good to start with, like Carsten mentioned On Thu, Jul 28, 2011 at 12:54 PM, Mitesh Patel wrote: > Hi GPA, > > Starts with here https://docs.djangoproject.com/en/1.3/ > > Thanks, > > Mitesh Patel > > > > > On 28 July 2011 23:19, NISA BALAKRISHNAN wrote: > >> django book

Re: Extending the User form

2011-07-28 Thread sandeep kaur
On Thu, Jul 28, 2011 at 4:39 PM, Sheogora wrote: > > I have extended the User Profile by adding my own field, > how do I change the New user form in the admin, to show the new field? > This can be done by simply adding your new field in list display under User Profile of admin.py file. And by doin

Re: Satchmo, the bloated manatee

2011-07-28 Thread Cal Leeming [Simplicity Media Ltd]
On Thu, Jul 28, 2011 at 7:03 PM, Jacob Kaplan-Moss wrote: > On Thu, Jul 28, 2011 at 7:15 AM, Bobby Roberts > wrote: > > satchmo has become a bloated manatee of a codebase. > > Hey, this isn't OK. I can tell you're frustrated, but insulting other > people's work isn't acceptable around here. You

Re: Django open source cashflow management app

2011-07-28 Thread Derek
On 28 July 2011 17:35, Derek wrote: > On Jul 28, 5:33 pm, Derek wrote: > > On Jul 28, 5:27 am, zodman wrote: > > > > > the app is back :) > > > > Oops! Google Chrome could not find misgastos.zodman.com.mxits > > > > Looks like:http://misgastos.zodman.com.mx/ > > is the correct URL! > > But unfo

Re: Satchmo, the bloated manatee

2011-07-28 Thread Matt Mansour
I have one cart running over 17K SKUs that is fast. (save for generating product variations). It's hosted at Webfaction with a hosting plan less powerful than yours. Have you checked the basics. Debug mode off. Caching on. (I am not even using memcached. Just file.). I am using Postgres. The Sat

Re: TimeField with minute-resolution in forms

2011-07-28 Thread Brian
Just in case anyone else has the same problem and finds their way here... The answers were there in the documentation once I rooted around for a while. I just need to override the default form field provided for my time model field and explicitly specify the allowed formats. class EntryForm(Mod

Re: about django

2011-07-28 Thread bruno desthuilliers
On 28 juil, 19:27, Ghanshyam Pandey wrote: > Hello, > > i want to learn django, but from where to start, I do not know. * If you don't know Python, start with the Python tutorial - it will save you a lot of pain. And don't forget to quickly browse the stdlib doc so you don't reinvent the proverb

Query about Django vs Web2Py

2011-07-28 Thread spawgi
Hello fellow Django users, First, this is not to start any flame war, but to get sincere advice. I started to learn Django and also completed the tutorial. However I have also come across another framework Web2Py. I wanted to get the perspective of django users on this framework and its compariso

Re: Transform model field to custom form field when creating from instance

2011-07-28 Thread bruno desthuilliers
In 28 juil, 19:00, Arkaitz Jimenez wrote: > Hi, > > I created a PostForm, ModelForm for Post model that has a ManyToMany > relationship with a model called Test, I use a CharField and a > clean_test(): to convert the comma separated list of test names to a > list of Test objects and this works per

Re: Query about Django vs Web2Py

2011-07-28 Thread Furqan Rauf
in my opinion its your decision, I have done some django and currently exploring web2py bit by bit. I think in Django you have much more control from start while in web2py you can start write off and then at some point when you need more complex behavior to implement you can go back and override st

Re: Transform model field to custom form field when creating from instance

2011-07-28 Thread arkai...@gmail.com
On Thu, Jul 28, 2011 at 9:58 PM, bruno desthuilliers < bruno.desthuilli...@gmail.com> wrote: > > I use a CharField and a > > clean_test(): to convert the comma separated list of test names to a > > list of Test objects and this works perfectly. > > Err... How do this work for not yet existing Test

Re: Transform model field to custom form field when creating from instance

2011-07-28 Thread bruno desthuilliers
On 28 juil, 23:04, "arkai...@gmail.com" wrote: > On Thu, Jul 28, 2011 at 9:58 PM, bruno desthuilliers < > >> the __init__ method looks like the right place to handle this. First >> make sure you exclude the related field from the ModelForm (cf the doc >> for ModelForms on how to do this) and add y

Re: Satchmo, the bloated manatee

2011-07-28 Thread Russell Keith-Magee
On Fri, Jul 29, 2011 at 2:16 AM, Cal Leeming [Simplicity Media Ltd] wrote: > > > On Thu, Jul 28, 2011 at 7:03 PM, Jacob Kaplan-Moss > wrote: >> >> On Thu, Jul 28, 2011 at 7:15 AM, Bobby Roberts >> wrote: >> > satchmo has become a bloated manatee of a codebase. >> >> Hey, this isn't OK. I can tel

Re: How do I change my user password on Django's bug tracker?

2011-07-28 Thread Jacob Kaplan-Moss
On Tue, Jul 26, 2011 at 7:07 AM, cool-RR wrote: > How do I change my user password on Django's bug tracker? https://www.djangoproject.com/accounts/password/change/ If you've forgotten your password, see https://www.djangoproject.com/accounts/password/reset/. Jacob -- You received this message

Re: Django, Pinax, Dreamhost Project

2011-07-28 Thread Jonathan of Cambridge
Hey Jeremy, You want to use the development version and the basic project. (This is a little counter intuitive based on the current website. I found this out by posting and reading on Pinax Users Google Group. I read that group more frequently than this one.) The creators of Pinax do consulting w

Re: Satchmo, the bloated manatee

2011-07-28 Thread Eric Chamberlain
On Jul 28, 2011, at 4:26 PM, Russell Keith-Magee wrote: > > Yes, it really was. He opened a request for a subject line and first > sentence by comparing Satchmo to a fat, ungainly animal. That's isn't > a productive way to begin a request for help. Now let's not dis the manatee. Here's a manate

Re: about django

2011-07-28 Thread Harjot Gill
Refer the following site.It will really help you.This site will help you to learn django from starting and this are some tutorials that will help you to learn django. www.djangoproject.com Best of luck ! -- You received this message because you are subscribed to the Google Groups "Django users

Re: Django admin upload image to few folders

2011-07-28 Thread Jonathan of Cambridge
I've been working on using django-filetransfers. Curious whether it works well for you. My current challenge is that I want to use the index as the file name for the url rather than the pk. Anyone have an idea how to do that easily? I'm thinking this is a simple question about databases in djan

Re: about django

2011-07-28 Thread Phang Mulianto
welcome to the club. ... start with the documentation like others said, then more deep buy a book for reference, then create a pilot project... On Jul 29, 2011 10:08 AM, "Harjot Gill" wrote: > Refer the following site.It will really help you.This site will help > you to learn django from starting

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread kenneth gonsalves
On Thu, 2011-07-28 at 09:37 -0700, Lucy Brennan wrote: > Before I comment, I would like to actually know if I got it right. In > Django: > > USE_I18N: translation > USE_L10N: localized formatting > > Right? wrong -- You received this message because you are subscribed to the Google Groups "D

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread Mike Dewhirst
On 29/07/2011 1:56pm, kenneth gonsalves wrote: On Thu, 2011-07-28 at 09:37 -0700, Lucy Brennan wrote: Before I comment, I would like to actually know if I got it right. In Django: USE_I18N: translation USE_L10N: localized formatting Right? wrong http://en.wikipedia.org/wiki/Internationaliza

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread Russell Keith-Magee
On Fri, Jul 29, 2011 at 11:56 AM, kenneth gonsalves wrote: > On Thu, 2011-07-28 at 09:37 -0700, Lucy Brennan wrote: >> Before I comment, I would like to actually know if I got it right. In >> Django: >> >> USE_I18N: translation >> USE_L10N: localized formatting >> >> Right? > > wrong Ok - serious

Re: Extending the User form

2011-07-28 Thread Gmail - neonmark
On 7/29/2011 6:11 AM, sandeep kaur wrote: On Thu, Jul 28, 2011 at 4:39 PM, Sheogora wrote: I have extended the User Profile by adding my own field, how do I change the New user form in the admin, to show the new field? This can be done by simply adding your new field in list display under Use

Re: USE_I18N vs. USE_L10N

2011-07-28 Thread kenneth gonsalves
On Fri, 2011-07-29 at 12:58 +0800, Russell Keith-Magee wrote: > >> USE_I18N: translation > >> USE_L10N: localized formatting > >> > >> Right? > > > > wrong > > Ok - seriously, Kenneth - if you're not going to take the time to > provide a full answer (with sentences, capitalization and all the > tr