Re: Django based Project Management software

2011-03-07 Thread Anand Agarwal
Its a hosted solution for subversion repository. Every project you create has its own svn repository created on our servers. -Regards Anand http://bootstraptoday.com On Tue, Mar 8, 2011 at 11:47 AM, Kenneth Gonsalves wrote: > On Tue, 2011-03-08 at 11:40 +0530, Anand

Re: Django-Celery: Rate Limit

2011-03-07 Thread Юлиян Попов
I tried but still no answers, that's why I decided to try here :( -- 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

Re: When do we stop using Django admin?

2011-03-07 Thread vikalp sahni
Agree, Admin should be considered as Admin for internal stuffs. if there is lots of opening up required. you should treat it as a customized app. Opening up of a table or two might work good in admin itself, with not much relations. Regards, //Vikalp On Tue, Mar 8, 2011 at 11:46 AM,

Re: When do we stop using Django admin?

2011-03-07 Thread ajaishankar
Thanks KG :) On Mar 8, 12:16 am, ajaishankar wrote: > Thanks Viklap > > We have been doing a lot of ModelAdmin & ModelForm tweaking as > mentioned in those slides. > > But still kind of skeptical we should be opening up the admin to other > companies; and go through the

Re: Django based Project Management software

2011-03-07 Thread Kenneth Gonsalves
On Tue, 2011-03-08 at 11:40 +0530, Anand Agarwal wrote: > Yes > > http://bootstraptoday.com > > btw, what do you mean by 'it has subversion hosting'? -- regards KG http://lawgon.livejournal.com Coimbatore LUG rox http://ilugcbe.techstud.org/ -- You received this message because you are

Re: When do we stop using Django admin?

2011-03-07 Thread Kenneth Gonsalves
On Mon, 2011-03-07 at 21:49 -0800, ajaishankar wrote: > I do know we can tweak the admin to restrict querysets etc. and also > override admin templates - but is admin preferable in this situation? no > > Or is it better to treat all this as a front end web app, and start > work on fresh pages.

Re: When do we stop using Django admin?

2011-03-07 Thread ajaishankar
Thanks Viklap We have been doing a lot of ModelAdmin & ModelForm tweaking as mentioned in those slides. But still kind of skeptical we should be opening up the admin to other companies; and go through the gymnastics of restricting say a foreign key lookup to just the data they are allowed to

Re: Django based Project Management software

2011-03-07 Thread Anand Agarwal
Yes http://bootstraptoday.com -Anand On Tue, Mar 8, 2011 at 5:43 AM, Kenneth Gonsalves wrote: > On Mon, 2011-03-07 at 19:33 +0530, Anand Agarwal wrote: > > Here is very simple & intuitive Web based Project Management > > Application > > based on django. Also it has

Re: django 1.2 + Google app engine + templatetags

2011-03-07 Thread Nick Rosencrantz
Solved. -- 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...@googlegroups.com. For more options, visit this

Re: When do we stop using Django admin?

2011-03-07 Thread vikalp sahni
Hi, Django Admin is nicely structured to give you lot of flixibility. We have tweaked around admin using all possible features and with good mingling of MIDDLEWARE, AUTH_BACKENDS and STORAGE one can achive a lot of integrations and customizations. have a look at these slides, it brings more

When do we stop using Django admin?

2011-03-07 Thread ajaishankar
Hi We have a app built on Django, and have been using the admin to good effect. Right now we want to open up the app to other companies: 1. They can log in, create *their* own users 2. They can only see data that belongs to their company etc. 3. Also in one part of the app, we expect a highly

Cycle & Include tags

2011-03-07 Thread Brian Neal
I'm using a recent checkout of Django trunk. If I have a template "test.html" which is this: {{ rowcolors }} the only way I could make cycle and include behave together is to do this: {% for obj in page.object_list %} {% include 'test.html' %} {% endfor %} I thought that perhaps the new

Re: How to aggreate in html django

2011-03-07 Thread sushanth Reddy
Hi Tom, Can you please add few lines of code example, to make code more efficient?sorry for troubling. -- 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

Re: Problem using django and ajax-jQuery

2011-03-07 Thread Daniel Roseman
On Monday, March 7, 2011 3:32:51 PM UTC-8, Rami wrote: > > Thanks Andy! > > 1- you were correct about the form submitting the get method. > > 2- As you mentioned, the when I change the if statement to > "request.GET.has_key('ajax')", it gets executed. the "?ajax" apparently > causes the

Re: Django based Project Management software

2011-03-07 Thread Kenneth Gonsalves
On Mon, 2011-03-07 at 19:33 +0530, Anand Agarwal wrote: > Here is very simple & intuitive Web based Project Management > Application > based on django. Also it has subversion hosting. > > http://bit.ly/fazfqa http://bootstraptoday.com/ <- this one? -- regards KG

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
On Mon, Mar 7, 2011 at 10:51 PM, Mike Ramirez wrote: > On Monday, March 07, 2011 01:20:47 pm Cal Leeming [Simplicity Media Ltd] > wrote: > > > I wouldn't recommend using this method, I did this previously for several > > > months, and quickly switched to an alternative

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Mike Ramirez
On Monday, March 07, 2011 01:20:47 pm Cal Leeming [Simplicity Media Ltd] wrote: > I wouldn't recommend using this method, I did this previously for several > months, and quickly switched to an alternative (which I mentioned in my > previous post). > > Generally speaking, keeping anything outside

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Shawn Milochik
I really need to pay attention to whom incoming e-mail is addressed. I thought I was continuing the thread on the list. Shawn -- 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.

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
I guess it depends on what you need to do. The webapps we run here have to meet a "high availability" criteria where it can float between nodes without experiencing any problems, whilst keeping a clear separation between dev, staging (if needed) and production environments. Our webapps are also

FileWrapper not working for me.

2011-03-07 Thread Tom Eastman
Hey guys, I'm using the Maverick packages, so Django 1.2.3 I need to serve a large binary (an mp3 in this case) directly through Django to ensure good access control independent of the web server itself. I have the following snippet of code, to download binary files via django: filename

date_heiarchy not working

2011-03-07 Thread Bobby Roberts
i've got this in my admin model: date_heiarchy='ShipDate' Shipdate is a DateField. The Date Heiarchy plugin is not showing on my admin list view... has that been depricated in django 1.2+? -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Multiple database queries

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
Sorry, I should make myself more clear. The complex lookups (such as range queries, full text search etc) take place inside Sphinx Search, then we do ID lookups from the database with the results from Sphinx. You can do column lookups as well on Sphinx >=0.99, so if you wanted to lookup the

Re: Multiple database queries

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
Hey Vidja, May I ask why so many database instances are required? In my experience, if you get to the point where you really need this many, it's usually better to use a solution like Sphinx Search Engine, then employ your database as a heavy key/value store (with the bare necessary unique

Multiple database queries

2011-03-07 Thread Vidja
Hi all, does anyone have experience with querying against multiple databases and performance issues? My plan is to query against 15-200 instances of a database (Postgres on a 8 core 32 GB machine, each db about 200 mb) , all with the same schema (an thus model file), but with different data. Are

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
I wouldn't recommend using this method, I did this previously for several months, and quickly switched to an alternative (which I mentioned in my previous post). Generally speaking, keeping anything outside of the version control is just not a good idea, unless it's a tmpfs, a sock dir, or

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Shawn Milochik
The easiest solution I've found: 1. Create a file named local_settings.py that is *outside* of version control. 2. Import local_settings at the bottom of settings.py, handling the exception if it doesn't exist. 3. Override anything you like in local_settings.py. This has these

Re: Bug in Django admin?

2011-03-07 Thread Michael Radziej
Ahoj Martin, On Mon, 07 Mar 2011 12:49:32 +0100, Martin Tiršel wrote: > When I use filter in Django admin (that produces URL > .../admin/appname/booltest/?completed__exact=False), I get results which > are with completed=True. This is the SQL query generated by Django >

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
Oh I also added DJANGO_ENVIRONMENT into that, which lets you specify environmental based settings overrides from the command line. Enjoy :) On Mon, Mar 7, 2011 at 9:09 PM, Cal Leeming [Simplicity Media Ltd] < cal.leem...@simplicitymedialtd.co.uk> wrote: > Hi, > > Omg, I was *just* thinking

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
Hi, Omg, I was *just* thinking about whether I should do a blog entry about this sort of requirement lmao. To combat multiple node hosting, we use a combination of code (as our webapps are split over multiple servers, all of which have different functions and varying environments) Here is a

Re: Main Application's settings.py floating multiple systems

2011-03-07 Thread Michael Radziej
On Mon, 7 Mar 2011 10:26:53 -0800 (PST), octopusgrabbus wrote: > So, my question is, is there an accepted way to populate BASE_URL and > MEDIA_URL with some local setting, like perhaps calling a python > function?, because it's Python code? I usually have a set of

Re: How to get next and previous element in a forloop in the template

2011-03-07 Thread Ariel
Could you give some idea ??? I am sorry about the previous message I had not finished. Any help is appreciated. Regards. On Mon, Mar 7, 2011 at 3:39 PM, Ariel wrote: > Hi everybody: > > I would want to know in the django template tags how to get the next and > the

How to get next and previous element in a forloop in the template

2011-03-07 Thread Ariel
Hi everybody: I would want to know in the django template tags how to get the next and the previous element when I am iterating in the forloop, I haven't found something similar, for instance I would want something like this: {% for element in list_elements %} {{forloop.get_prev_element.title}}

Re: Caching and Vary: Cookie header

2011-03-07 Thread Thanos Diacakis
Doh - thanks. I guess to keep the structure simple, I can set the page up for anonymous users, fully cached and all, and then use AJAX to figure out if they are logged in and tweak my header. Thanos On Mar 7, 9:43 am, Tom Evans wrote: > On Mon, Mar 7, 2011 at 4:23 PM,

Re: "DatabaseError: no such table:" in tests

2011-03-07 Thread diogobaeder
Got it, Joel! I'm using South, and I didn't know I had to create a migration for the new model, even before running the tests... well, I'll remember that! :-) Thanks for the help! Problem solved. :-) Diogo On Mar 7, 2:49 pm, diogobaeder wrote: > I doesn't make sense to

Main Application's settings.py floating multiple systems

2011-03-07 Thread octopusgrabbus
Is there a standard, accepted way to use environment variable or other substitution, so the application's settings.py file can exist on, for example, a production and test system. Right now, I've taken to coding the URL strings separately, and I know that's bad in the long run. So, my question

Treebeard Question

2011-03-07 Thread Tyler Brock
Hey guys, Was wondering if you could help me figure this out... I've got a class in a model that implements MP_Node from treebeard: http://dpaste.com/481579/ When I tag something and send the tag request to the API I want to create a new tag interaction (root node) as defined in the following

Re: How to aggreate in html django

2011-03-07 Thread Tom Evans
On Mon, Mar 7, 2011 at 5:44 PM, sushanth Reddy wrote: > Hi , > > I want to make total at the end of the each row,i have explained the details > in below > link. > > http://stackoverflow.com/questions/5223093/how-to-aggreate-in-html-django > > Can you please help me > >

Re: "DatabaseError: no such table:" in tests

2011-03-07 Thread diogobaeder
I doesn't make sense to run syncdb, since I'm running the test suite, and in memory, using SQLite. Any other idea? Thanks! On Mar 7, 2:41 pm, Joel Goldstick wrote: > On Mon, Mar 7, 2011 at 12:17 PM, diogobaeder wrote: > > Alright, I printed all

How to aggreate in html django

2011-03-07 Thread sushanth Reddy
Hi , I want to make total at the end of the each row,i have explained the details in below link. http://stackoverflow.com/questions/5223093/how-to-aggreate-in-html-django Can you please help me Thanks in advance sushanth -- You received this message because you are subscribed to the

Re: Caching and Vary: Cookie header

2011-03-07 Thread Tom Evans
On Mon, Mar 7, 2011 at 4:23 PM, Thanos Diacakis wrote: > I have spent several hours researching this, and I'm stumped, so > perhaps I could tap into some collective wisdom: > > I have a website whose page template includes a "Sign-In or Register" > link at the top.   This is

Re: interface admin

2011-03-07 Thread vikalp sahni
check out. django-admin-tools https://bitbucket.org/izi/django-admin-tools/wiki/Home it might help you. Regards, //Vikalp On Mon, Mar 7, 2011 at 6:44 PM, galbourn wrote: > I started in Django and I have a question. > Is it possible to generate different admin

django csv header and row format problem

2011-03-07 Thread sushanth Reddy
Hi, I am trying to create csv download ,but results download gives me in different format below is the link which gives the details of the problem http://stackoverflow.com/questions/5222841/django-csv-header-and-row-format-problem -- You received this message because you are subscribed to

Re: "DatabaseError: no such table:" in tests

2011-03-07 Thread Joel Goldstick
On Mon, Mar 7, 2011 at 12:17 PM, diogobaeder wrote: > Alright, I printed all the tables to the stdout, while in the test, > and the table was not created before running the test. Am I missing > something here? Just creating the model and associating the app in >

Organization and User Mgmt

2011-03-07 Thread Venkatraman S
Are there elegant solutions for managing the Organization/Employees/Users in a djanogo-App? OR do i need to create an Organization model and map the 'users' as employee and user and assign suitable permissions? Any tried+tested approaches? -V- -- You received this message because you are

Re: "DatabaseError: no such table:" in tests

2011-03-07 Thread diogobaeder
Alright, I printed all the tables to the stdout, while in the test, and the table was not created before running the test. Am I missing something here? Just creating the model and associating the app in INSTALLED_APPS isn't enough? Also, there's another model in the same "models.py" module, and

which statements are right?

2011-03-07 Thread yongzhen zhang
Hi, When i am doing some exercises, i found some questions are very to understand, Could you tell me which sentiences are correct? 1. Models convert data from relational database form to objects and vice versa. 2. Django model has to be written for a specific relation database 3. Foreignkey are

Caching and Vary: Cookie header

2011-03-07 Thread Thanos Diacakis
I have spent several hours researching this, and I'm stumped, so perhaps I could tap into some collective wisdom: I have a website whose page template includes a "Sign-In or Register" link at the top. This is shown on pretty much every page. If the user is already signed in, this is replaced

Re: Weird behaviour in Django logging (Django 1.3 RC)

2011-03-07 Thread Edwin
Sorry I wasn't clear enough. Here's the stack trace: Traceback: File "/usr/local/lib/python2.6/dist-packages/django/core/handlers/ base.py" in get_response 89. response = middleware_method(request) File "/home/user/projects/django/../django/common/middleware.py" in

"DatabaseError: no such table:" in tests

2011-03-07 Thread Diogo Baeder
Hi there, I'm having this weird error, where Django is failing while trying to run one of my integration tests, saying that it couldn't find the necessary table to create the model instance I want. Here are the relevant parts of my code, an I'm running the tests in SQLite in memory: #

signals and abstract base classes

2011-03-07 Thread Sneaky Wombat
Hey, wondering if i'm doing this wrong. I'm using the new receiver decorator in the 1.3 svn devel code.. In [2]: django.VERSION Out[2]: (1, 3, 0, 'rc', 1) If I leave sender out of the receiver decorator, it works fine, but I can't get it to work with an abstract base class as the sender. While

Re: Django-Celery: Rate Limit

2011-03-07 Thread Casey S. Greene
You might want to try these questions on the celery mailing list: http://groups.google.com/group/celery-users Hope this helps, Casey On 03/07/2011 09:58 AM, ju wrote: Why when I use rate_limit even the first task and the first try is waiting for some time before it's executed? -- You received

Re: data model help?

2011-03-07 Thread Tim
On Mar 5, 12:39 pm, Michael Radziej wrote: > Hi Tim! > > On Sat, 5 Mar 2011 06:05:51 -0800 (PST), Tim wrote: > > For me that looks a little complex. The 'sequence' doesn't really > > belong to the Chapter or the Book, but to their relationship. A > >

Django-Celery: Rate Limit

2011-03-07 Thread ju
Why when I use rate_limit even the first task and the first try is waiting for some time before it's executed? -- 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

Django-Celery: Task Retry and worker shut down

2011-03-07 Thread ju
What will happend if I shut down worker thread but the tasks is waiting for retry? Will I lose the task and how to avoid that? What is the correct way to stop django-celery worker in Windows? -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: celery tasks and circular imports

2011-03-07 Thread Brian Bouterse
I too "protect" code from being interpreted at import time by putting import statements directly in the tasks that need them. I don't think there is anything wrong with this approach the from a Python perspective other than possibly these: * imports are parsed at runtime and thus an import

Django based Project Management software

2011-03-07 Thread Anand Agarwal
Here is very simple & intuitive Web based Project Management Application based on django. Also it has subversion hosting. http://bit.ly/fazfqa -Regards Anand -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: celery tasks and circular imports

2011-03-07 Thread Shawn Milochik
If there's a "correct" way to do this I'd love to hear it also. At present I do the model imports in tasks.py within the task that requires the model. This is because in my models.py I import tasks from tasks.py. Shawn -- You received this message because you are subscribed to the Google

interface admin

2011-03-07 Thread galbourn
I started in Django and I have a question. Is it possible to generate different admin interfaces that are accessible according to user profiles? What is the easiest solution to manage different interfaces according to user profiles? Thank you for your help -- You received this message because

interface admin

2011-03-07 Thread galbourn
I started in Django and I have a question. Is it possible to generate different admin interfaces that are accessible according to user profiles? What is the easiest solution to manage different interfaces according to user profiles? Thank you for your help -- You received this message because

celery tasks and circular imports

2011-03-07 Thread cerberos
I have tasks.py that imports models to access the managers. I also want to import a task in a custom save method of one of my models but can't as this creates a circular import. I'm happy to use signals instead hover I don't really know where to register them apart from models.py (which would

Re: SQL generated for ManyToManyField is incorrect with Django 1.2.1

2011-03-07 Thread Gergely
Thanks a lot Tom! Now I see that not the "REFERENCES" is missing but the "ALTER" at the end of the script. And of course the reason is clear, you are right. I will test it with the latest django and sqlite and report the result here. Regards, Gergely On márc. 7, 13:33, Tom Evans

Re: SQL generated for ManyToManyField is incorrect with Django 1.2.1

2011-03-07 Thread Tom Evans
On Mon, Mar 7, 2011 at 12:04 PM, Tom Evans wrote: > If so, then there is no difference in the SQL generated - why would there be? > > Cheers > > Tom > Oh, I'm waay wrong: class Series(models.Model): pass class Episode(models.Model): series =

Re: SQL generated for ManyToManyField is incorrect with Django 1.2.1

2011-03-07 Thread Tom Evans
On Mon, Mar 7, 2011 at 11:08 AM, Gergely wrote: > And if you change the order? > If the foreign key references a model defined later? > > Gergely > Do you mean: class Episode(models.Model): series = models.ForeignKey('Series') class Series(models.Model): pass

django and music archives

2011-03-07 Thread Kenneth Gonsalves
hi, is anyone aware of any django project to do with managing an archive of music and playing the same? All searches only show up the other musical django ;-) -- regards KG http://lawgon.livejournal.com Coimbatore LUG rox http://ilugcbe.techstud.org/ -- You received this message because you

Re: Problem of installing haystack and thumbnail a python app

2011-03-07 Thread bayuadji
Hi, looked from your staktrace it seems that python didn't found thumbnail and haystack library. You could check by running sys.path from your django shell -adji- -Original Message- From: yozloy Sender: django-users@googlegroups.com Date: Sun, 6 Mar 2011

Re: SQL generated for ManyToManyField is incorrect with Django 1.2.1

2011-03-07 Thread Michal Petrucha
> And if you change the order? > If the foreign key references a model defined later? Correct me if I'm wrong, but you can't do that -- python will complain. I can't find a better reference off the bat than http://docs.djangoproject.com/en/1.2/ref/django-admin/#inspectdb It says that you have to

TemplateDoesNotExist Help

2011-03-07 Thread ptr21
Hi guys, I'm starting to learn how use Python as part of my class project. I decided to use the Django framework w/ Eclipse and I've completely stuck on an seemingly common error. Here are some snippets of the code: views.py from django.template.loader

Problem of installing haystack and thumbnail a python app

2011-03-07 Thread yozloy
Hey guys I'm new to Python, I want to install this python app called mirosubson my VPS, and I followed the installation guide in this github pages, when I got to the step 8: python manage.py syncdb I got the following error:

Bug in Django admin?

2011-03-07 Thread Martin Tiršel
Hello, I have such model: class BoolTest(models.Model): NO = False YES = True YES_NO_CHOICES = ( (NO, 'no'), (YES, 'yes') ) name = models.CharField( max_length=30 ) completed = models.BooleanField( default=NO,

Re: Payment Gateways

2011-03-07 Thread Kenneth Gonsalves
On Mon, 2011-03-07 at 06:03 -0500, CLIFFORD ILKAY wrote: > You can use whatever you like as long as it has an API and > documentation. We've used SecurePay (an Australian one), > InternetSecure, > BeanStream, Authorize.net, and others that I can't remember right > now. > They all have their

Re: SQL generated for ManyToManyField is incorrect with Django 1.2.1

2011-03-07 Thread Gergely
And if you change the order? If the foreign key references a model defined later? Gergely On márc. 7, 11:40, Tom Evans wrote: > On Mon, Mar 7, 2011 at 10:04 AM, Gergely wrote: > > Ok, lets concentrate 1 question at a time. > > > If you define the

Re: Payment Gateways

2011-03-07 Thread CLIFFORD ILKAY
On 03/07/2011 05:01 AM, Venkatraman S wrote: Hi, Would like to know which payment gateways do people use for managing money movements in their sites? I wouldnt like to go the Paypal way, any other suggestions? Hi, You can use whatever you like as long as it has an API and documentation.

Re: Ordering of querysets

2011-03-07 Thread Tom Evans
On Fri, Mar 4, 2011 at 8:40 PM, Sidney Cadot wrote: > Hi Tom, > >> Unless I'm being dense, you cannot represent this as a single SQL >> query, so logically you cannot represent this as a QuerySet. > > It is possible by using a nested query, e.g. > > SELECT * FROM (SELECT * FROM

Re: another foreignkey question

2011-03-07 Thread het.oosten
Just after I posted my question i found the solution: In the view: content = Frontpage.objects.all() In the template; {% for x in content %} Tekst: {{x.text}} {% for y in x.frontpageimages_set.all %} alt: {{ y.image }} {% endfor %} {% endfor %}

Re: SQL generated for ManyToManyField is incorrect with Django 1.2.1

2011-03-07 Thread Tom Evans
On Mon, Mar 7, 2011 at 10:04 AM, Gergely wrote: > Ok, lets concentrate 1 question at a time. > > If you define the referenced model later and use "lazy" relationship > in the foreign key field (with the name of the model instead of the > model itself) than in the generated

another foreignkey question

2011-03-07 Thread het.oosten
I have two models: class Frontpage(models.Model): title = models.CharField(max_length=200) text = models.TextField() def __unicode__(self): return self.title class Meta: verbose_name_plural = "Frontpage" class

Re: SQL generated for ManyToManyField is incorrect with Django 1.2.1

2011-03-07 Thread Gergely
Ok, lets concentrate 1 question at a time. If you define the referenced model later and use "lazy" relationship in the foreign key field (with the name of the model instead of the model itself) than in the generated sql you will not find the "REFERENCES" part of the foreign key definition. DB

Payment Gateways

2011-03-07 Thread Venkatraman S
Hi, Would like to know which payment gateways do people use for managing money movements in their sites? I wouldnt like to go the Paypal way, any other suggestions? -V- -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group,