Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""
3Abstract
4--------
6Shortcuts provide succinct helpers for various tasks. As with Django's ``shortcuts`` module, these may span multiple
7levels of MVC, "introducing controlled coupling for the sake of convenience".
9"""
10__author__ = "Shawn Davis <shawn@superdjango.com>"
11__maintainer__ = "Shawn Davis <shawn@superdjango.com>"
12__version__ = "0.12.1-d"
14from .library import *
16__all__ = (
17 "copy_model_instance",
18 "get_app_modules",
19 "get_model",
20 "get_setting",
21 "get_setting_with_prefix",
22 "get_user_name",
23 "parse_string",
24 "parse_template",
25 "static_file_exists",
26 "template_exists",
27 "there_can_be_only_one",
28 "title",
29 "user_in_group",
30 # "CombinedQuerySet",
31 "CompareQuerySet",
32)