Reputation: 664
These days I started working with Django, it's great!
I wonder if there is a "standard" to write comments in Django, for example, like codeigniter: http://codeigniter.com/user_guide/general/styleguide.html#commenting...
Thanks!
Upvotes: 0
Views: 2062
Reputation: 474
For Django views or any python file you can use the python style commenting
Like for single line comment your can try with
#
and for multiple line comment you can use """ """
and in templates you can do the html style commenting
like <!-- -->
Upvotes: 0