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
url(r'^%s/form/$' % (options.slug,), 'form_resources', kwargs={'model': model}, name="%s_create_form" % (options.slug, )),
url(r'^%s/(?P<uid>[\w_]+)/$' % (options.slug, ), 'resource', kwargs={'model': model}, name='%s_resource' % (options.slug, )),
url(r'^%s/(?P<uid>[\w_]+)/form/$' % (options.slug, ), 'form_resources', kwargs={'model': model}, name='%s_update_form' % (options.slug,)),
url(r'^%s/(?P<uid>[\w_]+)/share/$' % (options.slug, ), 'share_form', kwargs={'model': model}, name='%s_share_form' % (options.slug,)), )
url(r'^%s/(?P<collection_uid>[\w_]+)/remove/(?P<uids>[\w_,]+)$' % (options.slug, ), 'manage_collection', kwargs={'collection_model': model, 'action': 'remove'}, name='%s_remove_features' % (options.slug,)),
url(r'^%s/(?P<collection_uid>[\w_]+)/add/(?P<uids>[\w_,]+)$' % (options.slug, ), 'manage_collection', kwargs={'collection_model': model, 'action': 'add'}, name='%s_add_features' % (options.slug,)), )
url(path, 'handle_link', kwargs={'link': link}, name=link.url_name) )
url(r'^(?P<username>\w+)/workspace-owner.json', 'workspace', kwargs={"is_owner": True}, name='workspace-owner-json'), url(r'^(?P<username>\w+)/workspace-shared.json', 'workspace', kwargs={"is_owner": False}, name='workspace-shared-json'), url(r'^workspace-public.json', 'workspace', kwargs={"is_owner": False, "username": ''}, name='workspace-public-json'), url(r'^feature_tree.css', 'feature_tree_css', name='feature-tree-css'), ) |