A very interesting link:
http://www.nada.kth.se/~hjorth/matlab/
Welcome to Fer programes, a blog created with the intention to help us and other programmers in the developing of IT applications. It includes some commands used previously to solve specific problems, links to interesting web pages and general explanations about informatic topics. You are free to collaborate with comments when you consider it is oportune.
Wednesday, September 28, 2011
Friday, September 23, 2011
Access array elements in a Django template
http://stackoverflow.com/questions/1700661/access-array-elements-in-a-django-template
Remember that the dot notation in a Django template is used for four different notations in Python. In a template, foo.bar can mean any of:
foo[bar] # dictionary lookup
foo.bar # attribute lookup
foo.bar() # method call
foo[bar] # list-index lookup
Remember that the dot notation in a Django template is used for four different notations in Python. In a template, foo.bar can mean any of:
foo[bar] # dictionary lookup
foo.bar # attribute lookup
foo.bar() # method call
foo[bar] # list-index lookup
Monday, September 12, 2011
Saturday, September 3, 2011
Subscribe to:
Posts (Atom)