Object-Relational Mapping (ORM) Support
Multilingual Support
Administration GUI
Framework Support
MVI
MVP
MVC
MVZ
2
3
4
5
Model-View-Template
Model-View-Table
Map-View-Template
Main-View-Template
$ django-admin createproject project_name
$ django-admin startproject project_name
$ django startproject project_name
$ django createproject project_name
settings.py
admin.py
models.py
manage.py
wsgi.py
urls.py
__init__.py
HTML contents
404 error
XML document
All of the above
TRUE
FALSE
Can be true or false
Can not say
1
((variable))
{{variable}}
[[variable]]
[{variable}]
{{string|truncatewords}}
{{string|truncate:80}}
{{string|truncate}}
{{string|truncatewords:80}}
forloop.lastitem
forloop.counter
forloop.firstitem
forloop.reverse
Using Template {{ url : }} in template
Using reverse() in View Functions
Using get_absolute_url()
None of the above
render_to_html
render_to_response
response_render
render
apnumber
intcomma
intword
ordinal
result = list(query_set_1 | query_set_2)
from itertools import chain result = list(chain(query_set_1, query_set_2))
from django.db.models import Q result = Q(query_set_1) | Q(query_set_1)
result = query_set_1 + query_set_2
manage.py "“newapp users
manage.py "“startapp users
manage.py newapp users
manage.py startapp users