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
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
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
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
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
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
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
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
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
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
> 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(
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
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
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_
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
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
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
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
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
19 matches
Mail list logo