Re: Editable datagrid

2011-11-22 Thread Mike Seidle
On Monday, November 21, 2011 03:46:49 AM Vikas Rawal wrote this and sent it to To: Django users :: > I am new to django and to web programming. I am trying to build a > database application for entering/querying/viewing data from a mysql > database. The data entry

Re: Integrating facebook canvas with django

2011-10-21 Thread Mike Seidle
On Friday, October 21, 2011 12:10:12 PM Amit Sethi wrote this and sent it to To: django-users :: > One of the things that I need is to do is to replace django's user > backend such that it uses the facebook authentication mechanism .But > at same time be able to

Re: Django admin multiple company accounts

2011-10-19 Thread Mike Seidle
On Wednesday, October 19, 2011 02:10:49 PM Andre Terra wrote this and sent it to To: django-users@googlegroups.com:: > > To be honest, you're probably (not 100% sure) creating *more* work for > > yourself trying to make something like this work in django admin, than > > just designing something

Re: Django Development environment

2011-08-23 Thread Mike Seidle
MySQL Production: Debian Lenny, Cherokee or Apache, MySQL Couldn't survive without South :) -- Mike Seidle -- 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

Re: How to change the schma of database using python manage.py syncdb?

2011-08-18 Thread Mike Seidle
On Thursday, August 18, 2011 12:03:00 pm smith jack wrote: > at last, i use command python manage.py syncdb > > but was suprised to find that the schema of url table in the database > is not changed > > so is there any method to change the shcema of table using django command? When I started

Re: Displaying results in Template in a Table ? What is the proper way ?Any app?

2011-08-16 Thread Mike Seidle
On Wednesday, August 10, 2011 07:03:51 pm Brian Bouterse wrote: > I know it's not Django specific, but when I need a table for my Django > projects, I use jQuery Datatable . It rocks! I highly recommend Datatable... It's not to hard to do either. -- You received

Re: How to choose a license for an app or a project?

2011-05-13 Thread Mike Seidle
rcial license. > > Do people really care? Should I care? I think so. What do you people > think; How to choose a license and why? -- Mike Seidle -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send emai

Login, Password Recovery, etc

2011-02-11 Thread Mike Seidle
Quick question - is there an application or examples of completely implemented user authentication templates? It's getting old trying to devine how to set up templates for password recovery and registration. Seems to me that this should (and probably is) included with the rest of the

Re: Best forum/group for Django Help

2011-02-11 Thread Mike Seidle
On Thursday, February 10, 2011 03:40:24 am SimpleDimple wrote: > Not a prank, it was just what I thought..., it is always better to ask > than assume...thanks for confirmation that this is the best one > around. You might want to check your settings for the group - there are literally

Re: Amazing work

2011-02-06 Thread Mike Seidle
On Sunday, February 06, 2011 02:54:23 pm Cal Leeming [Simplicity Media Ltd] wrote: > Interesting. See, when I compared Zope to Django, I found Django's > extensive documentation and feature set to be perfect for prototyping, and > then optimizing bottlenecks at a later date, either via C

Re: Amazing work

2011-02-06 Thread Mike Seidle
On Thursday, February 03, 2011 08:02:43 pm Cal Leeming [Simplicity Media Ltd] wrote: > May I ask, how well did you get along with Zope? From what I can tell, > Django is suited for SME, where as Zope is the kinda thing that banks would > be using etc. Cal - I just used Django to write a credit

Re: How do I Bind a Form choice Field?

2011-01-07 Thread Mike Seidle
Hank - Here's the answer you are looking for: http://docs.djangoproject.com/en/dev/ref/forms/fields/#modelchoicefield Here's an example: stuff = forms.ModelChoiceField(queryset=Series.objects.values('whatever'), empty_label=" ") Spend some serious time learning modelforms. Most of the

Re: DateField and SelectDateWidget - How do you set the range for the widget?

2011-01-05 Thread Mike Seidle
Thank you. Problem solved. On Wednesday, January 05, 2011 03:58:59 pm Shawn Milochik wrote: > http://docs.djangoproject.com/en/dev/ref/forms/widgets/ > > Search for "year" on this page and it has what you need. > > Shawn -- Mike Seidle -- You received

DateField and SelectDateWidget - How do you set the range for the widget?

2011-01-05 Thread Mike Seidle
, the minimum date shown is 01/01/2011, which means people can't select data from last year. I can't find anything in the documentation that would let me change the range of dates shown in the SelectDateWidget. Any suggestions? -- Mike Seidle -- You received this message because you

Re: SSL through WSGI

2010-12-23 Thread Mike Seidle
o see you really are using mod_wsgi. You may be able to simplify that .htaccess file a bunch. -- Mike Seidle -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com.

Re: I don't get the big picture (admin, etc.)

2010-12-14 Thread Mike Seidle
Cocolombo - Actually, you are asking some pretty good questions because all of them are fundamental, and everyone starting with Django has to answer them. On Monday, December 13, 2010 10:25:45 pm cocolombo wrote: > I read a lot of documentation and books but there are still some very > basic

Re: Newbie question: How should I structure my very simple project / app?

2010-10-19 Thread Mike Seidle
Waza - Django should be ideal for your project. It should be a snap once you figure out how Django's put together. *Skip Do as others have suggested and do the tutorial. It will help you better understand MVC. * Skip the AJAX stuff unitl you have the above figured out. The magic ponies