How to find list of blocking issues for django releases?

2014-05-23 Thread Ryan Osborn
How can I go about finding a list of the issues that are blocking a djago release? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@goog

Re: Django on FreeHostingCloud.com

2011-05-10 Thread Ryan Osborn
Is no one able to offer any help? Thanks, Ryan -- 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...@googlegr

Django on FreeHostingCloud.com

2011-05-08 Thread Ryan Osborn
I recently came across FreeHostingCloud.com and wanted to see if it is possible to deploy django on it since it provides unlimited bandwidth, disk space and databases and also allows the use of python through fastcgi. I have been following the guide in the documentation here: http://docs.djangop

Re: Django Bigener

2011-05-07 Thread Ryan Osborn
The django tutorial that the others have mentioned is the best place to learn the basics. There is also a book on E-Commerce in django: http://www.amazon.co.uk/Beginning-Django--Commerce-Experts-Development/dp/1430225351/ref=sr_1_9?s=books&ie=UTF8&qid=1304834462&sr=1-9 -- You received this mes

Re: Best-practice for building URLs in templates with JavaScript

2011-04-23 Thread Ryan Osborn
You could always make the payment_id group optional using a ?: update_payment/(?P\w+)? that way this will match either: update_payment/ or update_payment/123 Hope that helps, Ryan -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Re: Static/media url in template

2011-04-05 Thread Ryan Osborn
You need to have *django.core.context_processors.media* in your TEMPLATE_CONTEXT_PROCESSORS setting in order to use this template tag. The same with STATIC_URL, you need to have * django.core.context_processors.static* in order to use it. Hope this helps, Ryan -- You received this message be

Re: How to store multiple instances of a single object in the database

2011-03-31 Thread Ryan Osborn
No problem, glad to have helped :) -- 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

Re: How to store multiple instances of a single object in the database

2011-03-30 Thread Ryan Osborn
Have you considered using the 'through' argument for the many to many field? This lets you specify your own intermediate table to which you can add extra data. So you could add in a quantity field so you would know how many of each molecule you need. Here is the documentation: http://docs.dj

Re: How to send emails?

2011-03-30 Thread Ryan Osborn
Hi, django-registration can take care of this for you: https://bitbucket.org/ubernostrum/django-registration/ Ryan -- 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 unsubscr

Re: unique_for_date not working?

2011-03-25 Thread Ryan Osborn
The problem with this is that the unique_for_date no longer works again On Mar 25, 3:15 pm, Daniel Roseman wrote: > On Friday, March 25, 2011 3:01:47 PM UTC, Ryan Osborn wrote: > > > Thanks for your reply Jacob.  The only problem with the method you > > suggested is that the

Re: unique_for_date not working?

2011-03-25 Thread Ryan Osborn
> Hi Ryan -- > > On Fri, Mar 25, 2011 at 3:55 AM, Ryan Osborn wrote: > > I am using django 1.3 and have the following in my models.py: > > > class Entry(models.Model): > >    title = models.CharField(max_length=255) > >    slug = models.SlugField(

unique_for_date not working?

2011-03-25 Thread Ryan Osborn
Hi, I am using django 1.3 and have the following in my models.py: class Entry(models.Model): title = models.CharField(max_length=255) slug = models.SlugField(unique_for_date='created') created = models.DateField(auto_now_add=True, editable=False) However, I can add an entry in the ad

Re: Repetition in urls.py

2011-03-24 Thread Ryan Osborn
Thanks guys, works great On Mar 24, 7:54 pm, akaariai wrote: > On Mar 24, 9:40 pm, Ryan Osborn wrote: > > > > > > > > > > > Hi, > > > I am using django 1.3 and have the following in my urls.py for a > > blogging applicat

Repetition in urls.py

2011-03-24 Thread Ryan Osborn
Hi, I am using django 1.3 and have the following in my urls.py for a blogging application: urlpatterns = patterns('', url(r'$', ArchiveIndexView.as_view(model=Entry,date_field='created',paginate_by=10), name='blog_archive_index'), url(r'today/$', TodayArchiveView.as_view(model=Entry,date_

Select widget options

2010-08-04 Thread Ryan Osborn
Hi, Is there a way to change the text shown in the select widget for each option? I have the following form where player2 is a foreign key to user. class MatchForm(forms.ModelForm): class Meta: model = Match fields = ['player2','result','date'] widgets = {'result': fo

Re: Inline formsets

2010-07-23 Thread Ryan Osborn
Can anyone help with this? Thanks, Ryan -- 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. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.co

Re: django mailing list app

2010-07-19 Thread Ryan Osborn
How about this? http://www.freehackers.org/thomas/2010/04/03/announcing-colibri-10-alpha1-a-mailing-list-manager-with-a-django-based-web-interface/ Ryan On Jul 18, 10:34 am, James Hancock wrote: > I am looking for an app that can manage subscriptions to a mailing list for > a web app I am making

Re: Multiple URLs, Common View

2010-07-19 Thread Ryan Osborn
You could try using this as your pattern: (?P[a-zA-Z0-9-]+) Ryan On Jul 19, 1:03 am, Phil Edwards wrote: > On 18/07/2010 23:55, Phil Edwards wrote: > > > > > -begin- > > def servePage(request): > > if request.path[1:] == '': > > thisPage = Page.objects.get(name = unicode('home')) > > el

Inline formsets

2010-07-19 Thread Ryan Osborn
Hi, I am trying to create a form in which a user can fill out details and it will create a parent object and multiple child objects, much like the django admin does when you set up a model to be a tabuar inline in the admin.py. I think I have to use inline formsets for this, but when I do this, o