Re: [] error

2013-08-26 Thread Apokalyptica Painkiller
Patrick if you want to show us your code use: http://pastebin.com/ 2013/8/26 Ramiro Morales > On Mon, Aug 26, 2013 at 11:17 AM, Patrick Larmann > wrote: > > Hello guys I am following the django docs tutorial part 1 and am having > > trouble moving

Re: [] error

2013-08-26 Thread Apokalyptica Painkiller
Hi Patrick, why don't you try to re write that sentence again? May be you write it wrong. I remembered had same error. I wanted to see your code from models.py but it seems to have nothing in it. 2013/8/26 Robin Lery > You gave the .pyc file. > > > On Mon, Aug 26, 2013 at

Re: As a New Bee

2013-08-16 Thread Apokalyptica Painkiller
Hello Sujeet try this IDE: http://ninja-ide.org/ I hope you like it! 2013/8/16 Sujeet Buddiga > Hi Djano'ans, >Im a new bee to Django and would like to work with an > IDE. Please suggest proper tutorials with IDE that can make my learning >

Re: IDE to practice django template language

2013-04-18 Thread Apokalyptica Painkiller
Now i'm using this: http://ninja-ide.org/. I don't know if this is what you need, but why don't you try it. See you 2013/4/18 Srinivasa Rao > Hi, I am new to this djnago, can you suggest any > development environment to practice template language. thanks,Srini > > -- >

Re: Difficulties Beginning

2012-07-10 Thread Apokalyptica Painkiller
May be it's python's version,why don't you try python 2.7 2012/7/10 James Smith > Thanks for the quick reply! I realized I posted a poor screenshot where > the name of the project had a space in it. I was being a bit silly there, > to be honest...that was after many failed

Re: Difficulties Beginning

2012-07-10 Thread Apokalyptica Painkiller
Hello, i'm not sure but may be your mistake is the name of the project. i mean, you type this: django-admin.py startproject pasta face The space between pasta and face, it's wrong, i guess it should be: django-admin.py startproject pasta_face And the SyntaxError i think it is: except

Re: Error with Views on Admin and Index page

2012-05-24 Thread Apokalyptica Painkiller
staticfiles? If so, maybe I didn't set that up > right? > > > On May 24, 1:14 pm, Apokalyptica Painkiller <apokalyptic...@gmail.com> > wrote: > > Are you doing django's tutorial? If it is correct in which part are you? > > > > 2012/5/24 cat123 <email...@gmail.co

Re: Error with Views on Admin and Index page

2012-05-24 Thread Apokalyptica Painkiller
... so which Views do you think it may be talking about, and > where would I look for this? > > > On May 24, 12:14 pm, Apokalyptica Painkiller > <apokalyptic...@gmail.com> wrote: > > Hello why don't you check this two links: > > > > http://stackoverflow.com/

Re: Error with Views on Admin and Index page

2012-05-24 Thread Apokalyptica Painkiller
Hello why don't you check this two links: http://stackoverflow.com/questions/5350241/django-import-error-that-refer-to-template-tags http://stackoverflow.com/questions/3496920/django-viewdoesnotexist Good luck :) 2012/5/24 cat123 > I'm new to Django and recently got my

Re: import error: no model named .....

2012-05-17 Thread Apokalyptica Painkiller
m> > Hi Apokalyptica Painkiller , > > Here is my urls.py and views.py > > > *URLS.PY* > > from django.conf.urls.defaults import* > from wikicamp.views import hello > > urlpattern = patterns(' ', > ('^hello/$,hello), > ) > > *VIEWS.py* > * > * > *f

Re: import error: no model named .....

2012-05-17 Thread Apokalyptica Painkiller
Hello, can you show us your views.py and urls.py? See you 2012/5/17 Ali Shaikh > Hey... > > > I am practicing to implement simple examples in django... > > started project with > 1.django-admin.py startproject wikicamp > 2.python manage.py startapp wiki > 3.editing