Re: ImportError at/ No module name

2012-12-20 Thread djangobie
I appreciate your response, but it cannot be the case, as my app is present in top level dir along with manage.py and project file container i.e. 'djangopratice': *my dir structure is:* -- djangopractice- -

Re: ImportError at/ No module name

2012-12-20 Thread djangobie
Can someone kindly look into this. On Thursday, December 20, 2012 6:27:42 PM UTC+5, djangobie wrote: > > Hi, I have just started practicing a tutorial for buidling a basic blog ( > http://www.djangorocks.com/tutorials/how-to-create-a-basic-blog-in-django/starting-your-application.html > ) > > D

Re: Django community, is it active?

2012-12-20 Thread Sithembewena Lloyd Dube
"Working with a framework is like any relationship... you make sacrifices.. *the love you get back depends on what you put in*.." - hehe ... moving on swiftly ... Vis. the bears, I can only recommend bear spray - and a good one, at that. To address the queries at hand - coming from several langua

Re: Django community, is it active?

2012-12-20 Thread Sithembewena Lloyd Dube
"Working with a framework is like any relationship... you make sacrifices.. *the love you get back depends on what you put in*.." - hehe ... moving on swiftly ... Vis. the bears, I can only recommend bear spray, or a dictionary - dependent on one's particular circumstances. To address the queries

Re: Converting Django app into a Desktop app

2012-12-20 Thread Mike Dewhirst
See also https://us.pycon.org/2012/schedule/presentation/393/ by Ryan Kelly and his 'esky' package for safely updating distributed apps. There is a link to that and other items in the above pycon talk. Mike On 21/12/2012 9:55am, Filip Wasilewski wrote: Hi, On Tuesday, December 18, 2012 5:06

Re: Converting Django app into a Desktop app

2012-12-20 Thread Filip Wasilewski
Hi, On Tuesday, December 18, 2012 5:06:19 PM UTC+1, Loai Ghoraba wrote: > > Hi > > I am very comfortable with Django, and I was wondering about whether there > is some way to convert a Django web app into a Desktop app (may be not > 100%), so that I can distribute it to users. May be wrapping it

Re: Can't display data from app in flatpages

2012-12-20 Thread Jason Arnst-Goodrich
The flatpages view is not provided the context which includes 'posts'. IMO you are correct with the {% load posts %} technique because it is entirely as result of the template you are using that requires you display that information -- if that makes sense. In other words it's not because of the

Re: how to send confirmation mail

2012-12-20 Thread Timothy Makobu
Where specifically are you stuck? We need more details. On Thu, Dec 20, 2012 at 9:49 AM, Randa Hisham wrote: > how to send confirmation mail and encryprted ink > -- > Randa Hesham > Software Developer > > Twitter:@ro0oraa > FaceBook:Randa Hisham

Re: Django community, is it active?

2012-12-20 Thread patrick
Two good resources off the top of my head (among many others that will probably be mentioned): Buddy Lindsey's GoDjango screencasts, they cover some good ground: http://godjango.com Also like Kenneth Love and Chris Jones' articles at http://brack3t.com -- You received this message because yo

Re: ImportError at/ No module name

2012-12-20 Thread Sandeep kaur
Make installed apps as : INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.admin', 'django.contrib.admindocs',

Re: Django community, is it active?

2012-12-20 Thread djangobie
Great question, and welcome to the group. I found quite few helpful posts here. and as per stats there are around 1k+ new posts every month. Me too, looking forward to some good blogs. -http://lincolnloop.com/blog/categories/django/ (Technical articles) -http://jacobian.org/writing/ (General to Te

ImportError at/ No module name

2012-12-20 Thread djangobie
Hi, I have just started practicing a tutorial for buidling a basic blog ( http://www.djangorocks.com/tutorials/how-to-create-a-basic-blog-in-django/starting-your-application.html ) Did exactly the same (except, using 'djangopractice' as project name instead of 'djangorocks') Actually It also d

A new kind of blocktrans that works with an unknown format string and a dictionary containing substitutes.

2012-12-20 Thread Kal Sze
Hello, While trying to develop my first real Django project, I have come across an *apparent* need to i18n'ize any arbitrary, unknown format string, with an accompanying dictionary that contains the substitutes to insert into the translated format string. For instance, I have a template that is

Re: ajax

2012-12-20 Thread Ehab Ahmed
hello see this tutorial : http://www.pythondiary.com/tutorials/django-and-ajax-jquery.html From: Randa Hisham To: django-users@googlegroups.com Sent: Wednesday, December 19, 2012 2:11 PM Subject: ajax hey, if i wana use ajax in my django project could i

ImportError at/ No module name

2012-12-20 Thread Nabeel Ahmed
Hi, I have just started practicing a tutorial for buidling a basic blog ( http://www.djangorocks.com/tutorials/how-to-create-a-basic-blog-in-django/starting-your-application.html ) Did exactly the same (except, using 'djangopractice' as project name instead of 'djangorocks') Actually It also d

how to send confirmation mail

2012-12-20 Thread Randa Hisham
how to send confirmation mail and encryprted ink -- Randa Hesham Software Developer Twitter:@ro0oraa FaceBook:Randa Hisham ٍ -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: trouble with pre_delete signal method

2012-12-20 Thread Thomas Orozco
It's great that you could find where the issue is coming from! Cheers, Thomas 2012/12/20 Mike Dewhirst > On 19/12/2012 11:58pm, Thomas Orozco wrote: > >> Hi, >> >> If you have no relationship, I'm a bit at a loss. I think the easier >> way would be to use a debugger if possible. >> >> I think

Re: ajax

2012-12-20 Thread Joey "JoeLinux" Espinosa
Sorry, accidentally sent the email before the link: http://therealjoelinux.blogspot.com/2011/11/making-ajax-calls-in-django-using-dojo.html *Joey "JoeLinux" Espinosa* Software Developer http://about.me/joelinux On 12/20/2012 06:18 AM, Joey "JoeLinux" Espinosa wrote: Randa, You really could us

Re: ajax

2012-12-20 Thread Joey "JoeLinux" Espinosa
Randa, You really could use any AJAX library you want. AJAX is just a front-end web request, so as long as you've provided Django a way to "catch" that request (a URL in urls.py, a view in views.py, etc), then there should be no problem. Here's a rudimentary example for running a Python scri

What are the required options in order to enable djangodblog for error logging in a MySQL database?

2012-12-20 Thread dariyoosh
Hello everybody, I would like to ask a question about djangodblog used for logging real time Django exceptions into the application database. I use the following tools for my project *Database:* 5.5.28 MySQL Community Server *OS*: Fedora Core 17 (X86_64) *Django* 1.4.2 *Python* 2.7.3 Acco

Re: how to use jquery onclick event and django inclusion_tag/assignment_tag?

2012-12-20 Thread Andriyko
Thank you for the quick and clean answer. It is one more entry in my todo list - Ajax! On Wednesday, December 19, 2012 9:00:39 PM UTC+2, ke1g wrote: > > > > On Wed, Dec 19, 2012 at 1:34 PM, Andriyko > > wrote: > >> Hello dear Django Users! >> >> I'm trying to use django inclusion_tag or/and ass

Re: Django community, is it active?

2012-12-20 Thread peter
On 12/19/2012 07:09 PM, Glyn Jackson wrote: @Odagi point well made. thanks for everyone for being so welcoming :0 I spent today building my first Django local site, ended up with 4 apps. taken me awhile to get my head around things i ended up with registration - handles my user signed

Re: Entity has an event Lifecycle, how does Django do it?

2012-12-20 Thread Glyn Jackson
@Russel, right, now I know what i'm looking for it makes it easier lol. thank you signals is what I needed. On Wednesday, December 19, 2012 11:29:28 PM UTC, Russell Keith-Magee wrote: > > Hi Glyn, > > What you're calling "events", Django calls "signals" [1]. In particular, > I'm guessing you're