How to use both namespace and view paths in template url tags

2012-10-09 Thread Christian Jurk
Hi folks, some time ago I've create a Django project which has become quite huge since then. Now I have a problem regarding the URL resolvers: The view paths have become quite long and I'd like to use namespaces to have shorter URL references within the templates. Once the "namespace" keyword

Re: object has no attribute '_state'

2012-10-09 Thread Tom Evans
On Fri, Oct 5, 2012 at 6:13 PM, Demian Brecht wrote: > Call me paranoid: https://fuhm.net/super-harmful/ One guys (well publicized) internet rant on why he dislikes super does not necessarily mean he is correct. Even if he is, follow his own advice: Subclasses must use super if their superclas

Re: when is a Context Processor called?

2012-10-09 Thread Tom Evans
On Mon, Oct 8, 2012 at 3:28 PM, Stefano T wrote: > Ok. > so basically they are called before the rendering of a template. > > How can i have an object stored in the request object (if possible)? > > Something that lets me to do, in a view: request.user_profile... > You can define a simple middlew

Is there any small and easy website example available for Django?

2012-10-09 Thread Sarbjit singh
I am very new to Django and I just finished first seven chapters from Djangobook.com. I am wondering how can we implement a small static content website using Django. I mean website should have Home Page and few other pages along with some menu options. I searched a lot on google for example of

Re: when is a Context Processor called?

2012-10-09 Thread Marek Brzóska
2012/10/9 Stefano Tranquillini > ok, > but in this way when the user logs out i've to remove the object from the > request, right? > what if the user closes the browser? > No. The request object lives just for one request from browser. User clicks tries to get certain url in browser, then django

Re: Is there any small and easy website example available for Django?

2012-10-09 Thread Jon Crowell
I have just installed Pinry, which is a nice small django project. It isn't static, though. But it is small enough and simple enough that you can easily look through the source code and understand what is going on. I think it is well-suited to learning Django. You can find Pinry here: http://o

Re: Django-SEO issue

2012-10-09 Thread vikas gupta
www.vyomtechnologies.com On Friday, August 17, 2012 1:16:53 PM UTC-7, jondbaker wrote: > > I've successfully installed Django-SEO, but when I try to limit the number > of backends (I only need/want my admin to have 'path' and not the other > three) I am met with the following error: > AttributeE

RE: when is a Context Processor called?

2012-10-09 Thread lacrymol...@gmail.com
For this example in particular, if you have django's UserMiddleware active, and that code assumes you do, you can always do request.user.get_profile() without needing to add this custom middleware -Mensaje original- De: Marek Brzóska Enviados: 09/10/2012 09:28:16 Asunto: Re: when is a

RE: Is there any small and easy website example available for Django?

2012-10-09 Thread lacrymol...@gmail.com
First of all, djangobook.com is outdated, and not recommended, at least last time i checked it. Secondly, for what seems to be your need, i'd recommend django-cms or some other cms application for django since without some kind of cms app, building a static content site would rapidly become, i

Re: Problem with URL configuration - cannot use absolute URLs in my case

2012-10-09 Thread Stephen Anto
hi, try to user url name instead of using hard coded url link. it may solve your problem. On Mon, Oct 8, 2012 at 8:21 PM, Ramiro Morales wrote: > On Sat, Oct 6, 2012 at 10:25 PM, Rohit Banga > wrote: > > > > So how do I code my url conf / view / template in order to be > independent of > > myw

Re: Is there any small and easy website example available for Django?

2012-10-09 Thread Jon Crowell
I am also using djangobook.com. If it is outdated and not recommended, then what resource should we use instead? Also, I find it fairly relevant and easy to follow, so I'm curious what specific objections there are to it. Incidentally, I'm using the version on github that is being updated: https:/

django socialauth username not showing correctly

2012-10-09 Thread psychok7
So i am using django socialauth and its working fine, except for the part where my usernames do not match my Facebook or twitter accounts after i log in. In other words for example if i my username is 'john', after i log in in my app it shows 'john820579c6960e4677'. What am i doing wrong? how ca

Re: Is there any small and easy website example available for Django?

2012-10-09 Thread Stephen Anto
hi, www.f2finterview.com has been fully developed by Django. On Tue, Oct 9, 2012 at 7:19 PM, Jon Crowell wrote: > I am also using djangobook.com. If it is outdated and not > recommended, then what resource should we use instead? Also, I find it > fairly relevant and easy to follow, so I'm curio

Re: django socialauth username not showing correctly

2012-10-09 Thread Daniel Molina Wegener
On 09/10/12 10:52, psychok7 wrote: So i am using django socialauth and its working fine, except for the part where my usernames do not match my Facebook or twitter accounts after i log in. In other words for example if i my username is 'john', after i log in in my app it shows 'john820579c6960e46

Unexpected EOF while calling a stored procedure

2012-10-09 Thread puneet loya
Hi Everyone, I m facing aproblem while fetching data from MS sql server using a stored procedure. The stored procedure is being called from Django. The problem is, it is not fetching data for this particular procedure and all other procedures are working fine. The only error i get is "SyntaxE

Re: object has no attribute '_state'

2012-10-09 Thread Demian Brecht
On 12-10-09 02:12 AM, Tom Evans wrote: On Fri, Oct 5, 2012 at 6:13 PM, Demian Brecht wrote: Call me paranoid: https://fuhm.net/super-harmful/ One guys (well publicized) internet rant on why he dislikes super does not necessarily mean he is correct. Even if he is, follow his own advice: Su

Re: Javascript encoding and python decoding and vice versa

2012-10-09 Thread Kurtis Mullins
You could obfuscate the Javascript; but there's no such thing as security through obfuscation :) HTTPs is your best bet in terms of getting it from the server to the client without someone in the middle reading it. On Tue, Oct 9, 2012 at 1:20 AM, Mike Dewhirst wrote: > On 9/10/2012 4:07pm, Laxmi

Re: django socialauth username not showing correctly

2012-10-09 Thread psychok7
hey thanks for the reply. Can you point out some examples here i can get do all that in the right way? On Tuesday, October 9, 2012 3:15:13 PM UTC+1, Daniel Molina Wegener wrote: > > On 09/10/12 10:52, psychok7 wrote: > > So i am using django socialauth and its working fine, except for the > > p

Re: Javascript encoding and python decoding and vice versa

2012-10-09 Thread Javier Guerra Giraldez
On Tue, Oct 9, 2012 at 12:07 AM, Laxmikant Gurnalkar wrote: > I am doing a high security data transfer. The things are showstopper to > transferring data through javascript to the python. Is it possible to hide > data or send data over web in that should not be human readable. i would start chec

Re: Javascript encoding and python decoding and vice versa

2012-10-09 Thread Javier Guerra Giraldez
sorry, broken links: Stanford Javascript Crypto Library http://crypto.stanford.edu/sjcl/ crypto-js http://code.google.com/p/crypto-js/ -- Javier -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-

/static/ 404

2012-10-09 Thread Jaap van Wingerde
settings.py: "STATIC_URL = 'http://jaap.custard.shrl.nl:8000/static/' # Additional locations of static files STATICFILES_DIRS = ( # Put strings here, like "/home/html/static" or "C:/www/django/static". # Always use forward slashes, even on Windows. # Don't forget to use absolute paths,

accessing django

2012-10-09 Thread Lewis
Hello, Is it the right way to access django without going through the command shell, but instead using ftp -> making new file and edit just like using php? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on th

Re: accessing django

2012-10-09 Thread Jonathan Baker
When you say "access django", exactly what do you mean? On Tue, Oct 9, 2012 at 9:25 AM, Lewis wrote: > Hello, > Is it the right way to access django without going through the command > shell, but instead using ftp -> making new file and edit just like using > php? > > > > Thanks > > -- > You re

Re: accessing django

2012-10-09 Thread Lewis Satini
For example, there's a script I want to install and everytime, I need to access to the command shell to install it, but in the case of php I can just unzip and upload to the server and access through browser. Can I do with that way? how is the process? On Tue, Oct 9, 2012 at 11:27 AM, Jonathan B

Re: /static/ 404

2012-10-09 Thread Tom Evans
On Tue, Oct 9, 2012 at 4:15 PM, Jaap van Wingerde wrote: > settings.py: > "STATIC_URL = 'http://jaap.custard.shrl.nl:8000/static/' > > # Additional locations of static files > STATICFILES_DIRS = ( > # Put strings here, like "/home/html/static" or "C:/www/django/static". > # Always use forw

Re: accessing django

2012-10-09 Thread Tom Evans
On Tue, Oct 9, 2012 at 4:29 PM, Lewis Satini wrote: > For example, there's a script I want to install and everytime, I need to > access to the command shell to install it, but in the case of php I can just > unzip and upload to the server and access through browser. > Can I do with that way? how i

Re: accessing django

2012-10-09 Thread Lewis Satini
Thank guys for helping this out. One more question what is the basic step of installing the package? are they all the same? On Tue, Oct 9, 2012 at 11:45 AM, Kurtis Mullins wrote: > Not really. You could probably use a host that might have some fancy > control panel for doing something like that;

Re: django socialauth username not showing correctly

2012-10-09 Thread Stefano Tranquillini
Django put numbers because you already have in the db a user with the fb username. check it. On Tuesday, October 9, 2012 5:19:00 PM UTC+2, psychok7 wrote: > > hey thanks for the reply. Can you point out some examples here i can get > do all that in the right way? > > On Tuesday, October 9, 2012

Re: accessing django

2012-10-09 Thread Tom Evans
On Tue, Oct 9, 2012 at 4:39 PM, Lewis Satini wrote: > Hello, > I am sorry for misplace script and package. I am new to Django. > so everytime when I need to install Django packages. I need to do it through > command shell? is there any other way without going through command shell? > > Thanks > A

Re: accessing django

2012-10-09 Thread Kurtis Mullins
It depends on the computer, but I'd recommend using a Virtual Environment and the program called 'pip'. Google can be your friend there :) Or if you run into any specific problems, don't hesitate to ask! On Tue, Oct 9, 2012 at 11:48 AM, Lewis Satini wrote: > Thank guys for helping this out. > One

Re: accessing django

2012-10-09 Thread Tom Evans
On Tue, Oct 9, 2012 at 4:48 PM, Lewis Satini wrote: > Thank guys for helping this out. > One more question what is the basic step of installing the package? are they > all the same? Why don't you install a couple and see? They are normally similar, but not necessarily so. Tom -- You received

Re: /static/ 404

2012-10-09 Thread Gladson Simplício Brito
# coding: utf-8DEBUG = False or True ?TEMPLATE_DEBUG = DEBUG if false, it has to serve files with apache, nginx, etc... if true, and to operate... 2012/10/9 Jaap van Wingerde > settings.py: > "STATIC_URL = 'http://jaap.custard.shrl.nl:8000/static/' > > # Additional locations of static files >

Re: django socialauth username not showing correctly

2012-10-09 Thread psychok7
yes you are right. i deleted the same name user and it works. but how can i control this with oauth users and users that register normally? On Tuesday, October 9, 2012 4:49:21 PM UTC+1, Stefano Tranquillini wrote: > > Django put numbers because you already have in the db a user with the fb > use

connecting to existance mysql

2012-10-09 Thread Lewis
Hello, I have website that build in php and have the database exists, what is the process in using django to connect the existance mysql database? is there tutorial about this process? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: accessing django

2012-10-09 Thread Lewis Satini
Thank you so much all of you and the fast response On Tue, Oct 9, 2012 at 11:52 AM, Tom Evans wrote: > On Tue, Oct 9, 2012 at 4:48 PM, Lewis Satini > wrote: > > Thank guys for helping this out. > > One more question what is the basic step of installing the package? are > they > > all the same?

Re: connecting to existance mysql

2012-10-09 Thread Lee Hinde
On Tue, Oct 9, 2012 at 8:58 AM, Lewis wrote: > Hello, > I have website that build in php and have the database exists, what is the > process in using django to connect the existance mysql database? is there > tutorial about this process? https://docs.djangoproject.com/en/1.4/howto/legacy-database

Re: accessing django

2012-10-09 Thread Jonathan Baker
As a former PHP dev who avoided the command line at all cost, the frustrations during the transition period to Python/Django/CLI were well worth it. It can seem daunting, but command line syntax quickly becomes second nature, and I can't imagine going back to the days when I developed using a mouse

Re: connecting to existance mysql

2012-10-09 Thread carlos
first https://docs.djangoproject.com/en/dev/howto/legacy-databases/#auto-generate-the-models cheer On Tue, Oct 9, 2012 at 10:02 AM, Lee Hinde wrote: > On Tue, Oct 9, 2012 at 8:58 AM, Lewis wrote: > > Hello, > > I have website that build in php and have the database exists, what is > the > > pr

Re: /static/ 404

2012-10-09 Thread Jaap van Wingerde
On Tue, 9 Oct 2012 16:31:18 +0100 Tom Evans wrote: > Assuming your question is "Why am I getting 404's for static content > on my dev server, even though I set STATIC_URL?", have you included > 'django.contrib.staticfiles' in INSTALLED_APPS? Yes: "INSTALLED_APPS = ( 'django.contrib.auth',

Re: A simple LinkedIn site with django

2012-10-09 Thread David Gomez
When you say is write to the paper, what do you mean? I'm new in programming and I just looking for a project, so I can learn on the fly. I'm looking almost the same as linkedin with less option. Like when a user go to the website, they see the main page, then they can to register, adding thei

Re: /static/ 404

2012-10-09 Thread Jaap van Wingerde
On Tue, 9 Oct 2012 11:33:36 -0400 Gladson Simplício Brito wrote: > # coding: utf-8DEBUG = False or True ?TEMPLATE_DEBUG = DEBUG > > > if false, it has to serve files with apache, nginx, etc... > if true, and to operate... "DEBUG = True TEMPLATE_DEBUG = DEBUG" -- You received this message beca

Re: /static/ 404

2012-10-09 Thread Tom Evans
On Tue, Oct 9, 2012 at 6:01 PM, Jaap van Wingerde wrote: > On Tue, 9 Oct 2012 11:33:36 -0400 > Gladson Simplício Brito wrote: > >> # coding: utf-8DEBUG = False or True ?TEMPLATE_DEBUG = DEBUG >> >> >> if false, it has to serve files with apache, nginx, etc... >> if true, and to operate... > "DEBU

c9.io and django admin - the quest for missing templates

2012-10-09 Thread Matteo Suppo
So I'm trying to develop with https://c9.io/ It's basically an online development suite, with terminals and editor and stuff. I installed django via pip and tried something with the admin, but I got this ugly error: TemplateDoesNotExist at /admin/ admin/login.html YES, I added the django.co

Re: A simple LinkedIn site with django

2012-10-09 Thread Joel Goldstick
On Tue, Oct 9, 2012 at 1:01 PM, David Gomez wrote: > When you say is write to the paper, what do you mean? I'm new in programming > and I just looking for a project, so I can learn on the fly. I'm looking > almost the same as linkedin with less option. Like when a user go to the > website, they s

Re: Django Internal Server Error

2012-10-09 Thread Wnt2bsleepin
Can you explain why it's bad to use uppercase names in Nix systems? I will remake the account if I need to. Here is the output of python Python 2.4 (#2, Oct 7 2012, 20:19:23) [GCC 4.1.2 20080704 (Red Hat 4.1.2-52)] on linux2 Type "help", "copyright", "credits" or "license" for more informati

Javascript translation always translates

2012-10-09 Thread Andreas
Hi everybody, I have a django project with default language 'el'. I am making translations for English 'en'. My javascript catalog is created fine and the relevant urls are loading fine. The problem is that it always translates to English. Even when: translation.activate('el') is used throughout

Sort Objects by ForeignKey Boolean Field

2012-10-09 Thread JoeLinux
Hey All, I have the following models: class Company: > name = models.CharField(max_length=200) > > class Event: > title = models.CharField(max_length=200) > company = models.ForeignKey(Company) > > class EventRegistration: > attended = models.BooleanField(default=False) >

Re: A simple LinkedIn site with django

2012-10-09 Thread David Gomez
Waooo, this is the first time that I ask something in a post and somebody reply me with what I want. Thanks a lot. Well about Python, I'm a network engineer and in my job they encounter an issue that a script was needed, so I choose Pyhton and basically in the last month, I been doing python au

Drop down menu

2012-10-09 Thread sri
Hi, I am new to Django/Web development and i am trying to create a drop down menu in my sample website and got stuck about the best way to develop it. My idea is to have a drop down of the city names on the homepage. City Names can be selected from the model character field having choices. The

Re: Is there any small and easy website example available for Django?

2012-10-09 Thread Joel Goldstick
On Tue, Oct 9, 2012 at 9:54 AM, Stephen Anto wrote: > hi, > > www.f2finterview.com has been fully developed by Django. > > > On Tue, Oct 9, 2012 at 7:19 PM, Jon Crowell wrote: > >> I am also using djangobook.com. If it is outdated and not >> recommended, then what resource should we use instead?

Re: Drop down menu

2012-10-09 Thread Cal Leeming [Simplicity Media Ltd]
Looks like someone already asked this question (and got an answer); https://groups.google.com/forum/?fromgroups=#!topic/django-users/ef-Yedt_0uo Here is a good place to start learning about forms - plenty of examples etc; https://docs.djangoproject.com/en/dev/ref/forms/api/ Hope this helps! Cal

admin geodjango geometry and googlemaps v3

2012-10-09 Thread NiL
Hi list, googlemaps v2 is deprecated @ google. I'm trying to use the googlemap's flavor of GeoAdmin, but to no luck. The code inside django.contrib.gis.maps.google.GoogleMap refers to the v2 of the GM API. (I'm using django 1.4.1) I've googled around but to no luck yet. Resources I've read s

Re: Django Internal Server Error

2012-10-09 Thread Wnt2bsleepin
On Tuesday, 9 October 2012 13:46:02 UTC-4, Wnt2bsleepin wrote: > > Can you explain why it's bad to use uppercase names in Nix systems? I will > remake the account if I need to. > Here is the output of python > > > > Python 2.4 (#2, Oct 7 2012, 20:19:23) > [GCC 4.1.2 20080704 (Red Hat 4.1.2-5

Re: Disabling CSRF is not working.

2012-10-09 Thread Bill Freeman
If you can't disable the middleware, you could consider marking the view with the csrf_exempt decorator from django.views.decorators.csrf (see https://docs/djangoproject.com/en/1.4/contrib/csrf/#utilities Bill On Sun, Oct 7, 2012 at 3:41 AM, Laxmikant Gurnalkar wrote: > Thanks, for the response.

Re: ANN: django-socketio 0.1.0 released

2012-10-09 Thread rahul jain
Can someone please let me know how to fix this? On Sun, Oct 7, 2012 at 5:35 PM, rahul jain wrote: > Hi Stephen, > > I am having issues with the installation. Is this project still > active? is there any goggle group? > > I just downloaded the latest file. Then i tried running the example > chat a

Re: Django setup with elsatic beanstalk

2012-10-09 Thread Seth Alves
If you name your top-level wsgi file to "application.py", does it do any better? -seth On Monday, October 8, 2012 10:22:51 AM UTC-7, shlomi oberman wrote: > > I'm trying without succes to setup a simple application using django with > elastic beanstalk from my windows machine. > Does anyo

Re: admin geodjango geometry and googlemaps v3

2012-10-09 Thread carlos
i thing the geodjango use openlayer. cheer On Tue, Oct 9, 2012 at 1:58 PM, NiL wrote: > Hi list, > > googlemaps v2 is deprecated @ google. I'm trying to use the googlemap's > flavor of GeoAdmin, but to no luck. > > The code inside django.contrib.gis.maps.google.GoogleMap refers to the v2 > of t

Re: Best practice of subclassing default/3rd part apps?

2012-10-09 Thread Bill Freeman
On Sat, Oct 6, 2012 at 12:04 PM, Xun Yang wrote: > Hi ke1g! Thanks a lot for the explanation! I'm currently using both the > second and third approach for the problem, a utility app for a few things > and embedding "registration" app in my project (Seeing it hasn't updated for > years, I suppose i

Re: invalid syntax (admin.py, line 25)

2012-10-09 Thread Nick Dokos
Jim Wombles wrote: > I'm working through the Django Tutorial: Photo Organizer and Sharing App and > I am getting an invalid syntax error in line 25 of admin.py: > > 1st = [x[1] for x in self.tags.values_list()] > Forget django: just go into the python interpreter and say 1st = 3 Same error,

Email new users account details

2012-10-09 Thread Ian Foote
I'm working on a small website for a small walking/mountaineering club. We would like to create accounts for our members using the admin site, and automatically email their details. I've googled a bit, but it isn't obvious to me if I can do this. Ideally, we would add a username (email address)

Re: Managers, Queryset, inheritance and polymorphism

2012-10-09 Thread Amirouche Boubekki
Thx Lachlan, I'm not sure to understand everything, I think I will have to track this variables in the code to see how they are used. I found out about my bug, it was the import of a pyc that made all the machinery buggy. Thanks, Amirouche -- You received this message because you are subscribe

Re: Email new users account details

2012-10-09 Thread Bill Freeman
Perhaps what you want to do is generate a password reset email for them. We know that you've set their email (or you couldn't mail them) and username (since that's required for an account?). There is no need to set a password. The reset email contains a link with a magic number in the urlpath, a

Duplicate entry error from syncdb

2012-10-09 Thread Larry Martell
I added a new model and then ran syncdb. It failed with: django.db.utils.IntegrityError: (1062, "Duplicate entry '1-add_permission' for key 'content_type_id'") I removed the new model and ran it again and got the same error. I've run syncdb many times on this same machine before with no issues.

Re: Duplicate entry error from syncdb

2012-10-09 Thread Larry Martell
On Tue, Oct 9, 2012 at 5:50 PM, Larry Martell wrote: > I added a new model and then ran syncdb. It failed with: > > django.db.utils.IntegrityError: (1062, "Duplicate entry > '1-add_permission' for key 'content_type_id'") > > > I removed the new model and ran it again and got the same error. I've >

Re: Duplicate entry error from syncdb

2012-10-09 Thread Larry Martell
On Tue, Oct 9, 2012 at 6:22 PM, Larry Martell wrote: > On Tue, Oct 9, 2012 at 5:50 PM, Larry Martell wrote: >> I added a new model and then ran syncdb. It failed with: >> >> django.db.utils.IntegrityError: (1062, "Duplicate entry >> '1-add_permission' for key 'content_type_id'") >> >> >> I remove

Object Serializer

2012-10-09 Thread Victor Manuel Quiñones Victor
Hi guys, I need some help here... I need to serialize some objects and save them into the database. What library would you suggest for it? Thank you -- Quiñones Victor Manuel Tel: +54 0362 15 4 880839 Resistencia - 3500 Argentina -- You received this message because you are subscribed to the

Re: Django testing strategy

2012-10-09 Thread Lachlan Musicman
This has been a very interesting thread - out of interest, does anyone have a preference for one of factory-boy or django-dynamic-fixture and why? They look similarly up to date and useful, but I've no idea how to differentiate them. cheers L. -- ...we look at the present day through a rear-vie

Re: Object Serializer

2012-10-09 Thread Mike Dewhirst
On 10/10/2012 12:10pm, Victor Manuel Quiñones Victor wrote: Hi guys, I need some help here... I need to serialize some objects and save them into the database. What library would you suggest for it? Have you looked at ... https://docs.djangoproject.com/en/1.4/topics/serialization/ Thank y

Re: Disabling CSRF is not working.

2012-10-09 Thread Laxmikant Gurnalkar
Yeah, Thanks a lot. now I preferred to work with CSRF. On Wed, Oct 10, 2012 at 2:24 AM, Bill Freeman wrote: > If you can't disable the middleware, you could consider marking the > view with the csrf_exempt decorator from django.views.decorators.csrf > (see https://docs/djangoproject.com/en/1.4/c

A very basic question with Django

2012-10-09 Thread Sarbjit singh
First of all, I am very sorry for asking this basic question. I am not sure if this is the right place to put this question but I am very confused. I am not having much experience with web development, so i don't know where the Django fits in here. I searched a lot on internet, few forums sugges

Re: A very basic question with Django

2012-10-09 Thread Tomáš Ehrlich
Hello, I wouldn't say that Django is not suitable for web development. Even when someone says it's not, it's just an opinion, but in general, Django is framework for web development. A1: Django has many batteries included. Database access through object relational model and form processing are

Re: A very basic question with Django

2012-10-09 Thread Tomáš Ehrlich
Ehm, It's not disgus but http://www.disqus.com ;) Sorry... Dne středa, 10. října 2012 8:09:07 UTC+2 Tomáš Ehrlich napsal(a): > > Hello, > I wouldn't say that Django is not suitable for web development. Even when > someone says it's not, it's just an opinion, but in general, Django is > framework

Re: A simple LinkedIn site with django

2012-10-09 Thread Sergiy Khohlov
In this case I'm proposing to start from simple things. You have saving data from router to the text file ? Perfect. Simple plan: Write a structure of the records Build a django model on it Try to save your data using django model View your data in your browser via django vie and template

Re: Django performance vs others

2012-10-09 Thread Moonlight
I have checked django codeused in this post. It is not parsing... just render, here is django template: {% for row in table %}{% for