Re: What are the active Django e-commerce frameworks right now (2014)?

2014-04-26 Thread Jared Nielsen
Check out Stripe. Not a framework, but very easy to implement with Django. On Saturday, April 26, 2014 4:57:51 AM UTC-6, Brutus Schraiber wrote: > > Thanks 'somecallitblues' I will definitely take a closer look at Mezzanine > and Cartridge. > > But I'm kinda baffled. Only one answer after two

Re: Django and Zinnia + DjangoCMS

2014-04-24 Thread Jared Nielsen
/ For a Bootstrap theme I recommend Bootswatch: http://bootswatch.com/ On Thursday, April 24, 2014 9:37:33 AM UTC-6, Silvio Siefke wrote: > > Hello, > > On Thu, 24 Apr 2014 08:17:11 -0700 (PDT) Jared Nielsen > <nielse...@gmail.com > wrote: > > > If you're not a programmer,

Re: Django and Zinnia + DjangoCMS

2014-04-24 Thread Jared Nielsen
If you're not a programmer, new to Django, and need a CMS, why not use Mezzanine ? You'll have a fully functional site up and running in a very short time with the added bonus that you can learn Django (and programming) as you work backwards, reverse engineering

Django & Zinnia installation: where's the zinnia app folder?

2014-04-09 Thread Jared Nielsen
Hi, Noob here. I'm building my first Django project and wanted to integrate a pre-existing blog app. I got zinnia set up and accessible through admin, but the process didn't create a zinnia folder in my project. Where are the html and css files for the out-of-the-box zinnia? How do I go about

Re: Help getting started: Which server setup for a beginner? Apache? lighttpd? To use or not virtualenv?

2013-07-30 Thread Jared Nielsen
Thanks everyone! This was all very useful advice. Wish I had known all this days ago... On Tue, Jul 30, 2013 at 9:00 AM, Javier Guerra Giraldez <jav...@guerrag.com>wrote: > On Tue, Jul 30, 2013 at 10:48 AM, Jared Nielsen <nielsen.ja...@gmail.com> > wrote: > > I s

Help getting started: Which server setup for a beginner? Apache? lighttpd? To use or not virtualenv?

2013-07-30 Thread Jared Nielsen
I'm trying to learn Django but finding myself lost in troubleshooting hell. I can't find consistent information on the best approach for a beginner to get set up. I started setting up Apache with mod_wsgi, but ran into innumerable config errors. After some Googling about, I found a number of

Re: no style in admin pages; learning from djangobook.com

2013-07-02 Thread Jared Nielsen
s from STATIC_URL from > > STATIC_ROOT before you get it to work. > > > > > > On Monday, July 1, 2013 9:05:31 AM UTC-4, Jared Nielsen wrote: > >> > >> Hi all, > >> Just getting started with Django. > >> I'm following the pr

no style in admin pages; learning from djangobook.com

2013-07-01 Thread Jared Nielsen
Hi all, Just getting started with Django. I'm following the projects on djangobook.com. After activating the admin interface I don't have .css styling. I also have no idea how to enable it. Any help is greatly appreciated. Thanks! -- You received this message because you are subscribed to the

Re: Inconsistency between DB Query Results Between Threads

2010-04-28 Thread Jared Smith
needed this on the methods that changed data but didn't realize it would make a difference on methods that do reads in other threads. Thanks, Jared 2010/4/28 Tomasz Zieliński <tomasz.zielin...@pyconsultant.eu> > > > On 28 Kwi, 22:04, Jared Smith <jaredtsm...@gmail.com> wrote

Inconsistency between DB Query Results Between Threads

2010-04-28 Thread Jared Smith
could get this problem more generally since there are multiple threads accessing the DB and I need to make all of them get the most recently committed value. Thank you for any advice, Jared -- You received this message because you are subscribed to the Google Groups "Django users" grou

Re: How to concatenate a list of Q objects?

2010-04-08 Thread Jared Forsyth
Ok, if I understand correctly, you *don't want* to bitwise OR "|" them short answer: qObjects = [qObject1, qObject2, qObject3] Sample.objects.filter(*qObjects) note the "*". This tells python "expand this list as arguments". cheers Jared On Thu, Apr 8,

update with where clause constraints?

2010-02-04 Thread Jared Smith
you have any suggestions. Thanks, Jared -- 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...@googlegr

Attribute Error when doing a syncdb.

2008-10-24 Thread Jared
. I then ran the syncdb command from my project folder and get the following error: AttributeError: 'module' object has no attribute 'tagging' If you could point me in the right direction I would appreciate it. Thanks, Jared --~--~-~--~~~---~--~~ You received

pagination

2008-04-09 Thread Jared
I have two objects with one being a fk to the other (there are other fields in my example, but this seems the relevant parts)... class x(models.Model): name=models.CharField() class y(models.Model): name=models.CharField() x=models.ForeignKey(x) I'm currently using the

Re: Rich text editor in Admin tool

2008-04-04 Thread Jared Dobson
Yeap, A google search returned these two howtos: Using Dojo's Rich Text Editor: http://code.djangoproject.com/wiki/AddDojoEditor And using tinymce. :-) http://www.dehora.net/journal/2006/05/using_tinymce_in_djangos_admin.html Good luck. :-) Thanks, Jared On Fri, Apr 4, 2008 at 9:00 AM, bcurtu

Re: foreign key question

2008-04-04 Thread Jared Dobson
))) if form.is_valid(): cartuchoFallado = form.save(commit=False) cartuchoFallado.informe = models.SolicitudCambio(int(informe)) cartuchoFallado.save() return HttpResponseRedirect("") How does that look? :-) Thanks, Jared Dobson On Fri, Apr 4,

Re: ImportError: No module named django.core.handlers.modpython

2008-04-04 Thread Jared Dobson
just figure out what's up with my machine. :-P Go nube! Thanks, Jared On Thu, Apr 3, 2008 at 11:28 PM, Graham Dumpleton < [EMAIL PROTECTED]> wrote: > > On Apr 4, 2:24 pm, "Jared Dobson" <[EMAIL PROTECTED]> wrote: > > Hey Graham, > > > > Thanks

Re: related object access

2008-04-03 Thread Jared
> > Is it possible, from the table object to determine which cell objects > > are marked as being in row 1? > > Let's say your table object is t_obj. Then you can do: > > row_one_cells = t_obj.cell_set.filter(row=1) Is this callable from a template? I'm trying as much as possible to use the

ImportError: No module named django.core.handlers.modpython

2008-04-03 Thread Jared Dobson
Thanks in advance for any advice or tips or if there is an some emails that already cover this. Thanks, Jared --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: Apache & mod_python 404 error on page access

2008-04-03 Thread Jared
I'm certainly no django expert, but have you checked the ownership and permissions on the html area you're trying to serve? On Apr 3, 5:13 pm, pieaholicx <[EMAIL PROTECTED]> wrote: > Okay, so whenever I request anything through my apache server I get a > 404 error. Here are my configuration

related object access

2008-04-03 Thread Jared
I have something of an odd question, I think... I have a couple of objects setup something like this (there are more fields, but this seems to be enough of a relevant example)... class table(models.Model): name = models.CharField() class cell(models.Model): name = models.CharField()

Re: Trouble with last bit of Tutorial

2007-07-24 Thread Martin, Jared
I think my post got lost last night... So here's my question again: - Original Message - From: django-users@googlegroups.com To: Django users Sent: Mon Jul 23 20:53:49 2007 Subject: Trouble with last bit of Tutorial I'm