Re: App Name in Admin

2008-11-26 Thread Kurczak
I believe the only way to do this is to edit admin index template. On Nov 26, 10:15 am, "Alex Koshelev" <[EMAIL PROTECTED]> wrote: > Application not model. verbose_name works for model itself > > Just now there is no way to set custom application name. > > On Wed, Nov 26, 2008 at 10:40, Daniel Ro

Re: Best IDE for Django and python?

2008-11-25 Thread Kurczak
I wonder why no one mentioned Komodo IDE or Komodo Edit. They're my personal favorites for bigger projects. Both are well suited for dynamic languages and really lightweight compared to Bloatclipse with pydev (or aptana). --~--~-~--~~~---~--~~ You received this mes

Re: Syncing two django applications via cURL

2008-11-15 Thread Kurczak
Also, is there some way to make this action "transaction like" ? To be sure that every action was synchronised? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email

Re: Read/Create Excel xls files using django

2008-11-13 Thread Kurczak
On 13 Lis, 20:45, dj <[EMAIL PROTECTED]> wrote: > Hello All, > > I am trying to detemine if there is a way to read the data from an > Excel xls file into django. I also need to create an xls file. Does > anyone know how that would be done ? If you have windows hosting you could use COM interface f

Re: Syncing two django applications via cURL

2008-11-13 Thread Kurczak
On 13 Lis, 19:23, Ryan Nowakowski <[EMAIL PROTECTED]> wrote: > You could create a view that accepts a post that includes the following: >   * admin username (for auth) >   * admin password (for auth) >   * username >   * user password >   * other attrs... > > Then from your admin hooks, you can do

Re: Syncing two django applications via cURL

2008-11-13 Thread Kurczak
On 13 Lis, 19:17, "Dj Gilcrease" <[EMAIL PROTECTED]> wrote: > Is there a profound reason you are not using the same DB for all the > sites, and just using django.contrib.sites to keep the content > separated between them? Yes, client's request. --~--~-~--~~~---~--~--

Syncing two django applications via cURL

2008-11-13 Thread Kurczak
ofoundly grateful for any insights on this. Thanks, Kurczak --~--~-~--~~~---~--~~ 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 unsubsc

Re: Catching Exceptions thrown in .save() - django 1.0

2008-10-02 Thread Kurczak
can pass model from there. Thanks, Kurczak On 2 Paź, 16:51, Michael Newman <[EMAIL PROTECTED]> wrote: > Kurczak; > > Short of this is, catching specific errors in the save method and > displaying them to the user are hard and you might be regurgitating > items back to the user

Re: Catching Exceptions thrown in .save() - django 1.0

2008-10-02 Thread Kurczak
Amazing! Thank you so much. Kurczak On 2 Paź, 20:24, Michael <[EMAIL PROTECTED]> wrote: > > Thank you for your input. > > I'd rather use forms and clean_ method, but I need to get > > object's pk (it object exists in db), > > is there any proper way to

Catching Exceptions thrown in .save() - django 1.0

2008-10-02 Thread Kurczak
Hello there, I'm in need of some kind of validation at model level (and don't have time to wait till 1.1 lands). Now I'm doing it by raising exceptions in save method (I know how ugly it sounds). What can I do to propagate those exceptions to forms or handle them at some user-friendly level (so a

Re: disable delete checkbox in Inline formset

2008-09-08 Thread Kurczak
On 8 Wrz, 22:02, David Zhou <[EMAIL PROTECTED]> wrote: > On Sep 8, 2008, at 2:55 PM, Kurczak wrote: > > On 8 Wrz, 20:37, David Zhou <[EMAIL PROTECTED]> wrote: > >> On Sep 8, 2008, at 2:30 PM, Kurczak wrote: > > >>> Is there any way to disable/remove

Re: disable delete checkbox in Inline formset

2008-09-08 Thread Kurczak
On 8 Wrz, 20:37, David Zhou <[EMAIL PROTECTED]> wrote: > On Sep 8, 2008, at 2:30 PM, Kurczak wrote: > > > Is there any way to disable/remove the delete checkbox for inline > > formsets ( in admin) ? > > I found nothing about it in docs, and I believe there's

disable delete checkbox in Inline formset

2008-09-08 Thread Kurczak
Hi there, Is there any way to disable/remove the delete checkbox for inline formsets ( in admin) ? I found nothing about it in docs, and I believe there's no way to pass the 'can_delete' parameter to inlineformset_factory. Obviously I can disable the "Can delete" permission, but the ugly box is st