dynamicweb/debug.log
2017-08-17 02:48:35 +05:30

31996 lines
5.6 MiB

(0.005) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.002) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.032)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
CREATE TABLE "django_migrations" ("id" serial NOT NULL PRIMARY KEY, "app" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "applied" timestamp with time zone NOT NULL); (params None)
(0.326) CREATE TABLE "django_migrations" ("id" serial NOT NULL PRIMARY KEY, "app" varchar(255) NOT NULL, "name" varchar(255) NOT NULL, "applied" timestamp with time zone NOT NULL); args=None
(0.100) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
CREATE TABLE "membership_customuser" ("id" serial NOT NULL PRIMARY KEY, "password" varchar(128) NOT NULL, "last_login" timestamp with time zone NULL, "name" varchar(50) NOT NULL, "email" varchar(254) NOT NULL UNIQUE, "validated" integer NOT NULL, "validation_slug" varchar(50) NOT NULL UNIQUE); (params None)
(0.153) CREATE TABLE "membership_customuser" ("id" serial NOT NULL PRIMARY KEY, "password" varchar(128) NOT NULL, "last_login" timestamp with time zone NULL, "name" varchar(50) NOT NULL, "email" varchar(254) NOT NULL UNIQUE, "validated" integer NOT NULL, "validation_slug" varchar(50) NOT NULL UNIQUE); args=None
CREATE TABLE "membership_creditcards" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, "card_number" varchar(50) NOT NULL, "expiry_date" varchar(50) NOT NULL, "ccv" varchar(4) NOT NULL, "payment_type" varchar(5) NOT NULL, "user_id_id" integer NOT NULL); (params None)
(0.067) CREATE TABLE "membership_creditcards" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, "card_number" varchar(50) NOT NULL, "expiry_date" varchar(50) NOT NULL, "ccv" varchar(4) NOT NULL, "payment_type" varchar(5) NOT NULL, "user_id_id" integer NOT NULL); args=None
CREATE INDEX "membership_customuser_email_aac7c430_like" ON "membership_customuser" ("email" varchar_pattern_ops); (params [])
(0.042) CREATE INDEX "membership_customuser_email_aac7c430_like" ON "membership_customuser" ("email" varchar_pattern_ops); args=[]
CREATE INDEX "membership_customuser_validation_slug_7094f696_like" ON "membership_customuser" ("validation_slug" varchar_pattern_ops); (params [])
(0.060) CREATE INDEX "membership_customuser_validation_slug_7094f696_like" ON "membership_customuser" ("validation_slug" varchar_pattern_ops); args=[]
ALTER TABLE "membership_creditcards" ADD CONSTRAINT "membership_cred_user_id_id_f55443cf_fk_membership_customuser_id" FOREIGN KEY ("user_id_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.024) ALTER TABLE "membership_creditcards" ADD CONSTRAINT "membership_cred_user_id_id_f55443cf_fk_membership_customuser_id" FOREIGN KEY ("user_id_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "membership_creditcards_18624dd3" ON "membership_creditcards" ("user_id_id"); (params [])
(0.044) CREATE INDEX "membership_creditcards_18624dd3" ON "membership_creditcards" ("user_id_id"); args=[]
(0.015)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.006) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('membership', '0001_initial', '2017-08-15T19:09:49.393618+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('membership', '0001_initial', datetime.datetime(2017, 8, 15, 19, 9, 49, 393618, tzinfo=<UTC>))
CREATE TABLE "django_content_type" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL, "app_label" varchar(100) NOT NULL, "model" varchar(100) NOT NULL); (params None)
(0.065) CREATE TABLE "django_content_type" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL, "app_label" varchar(100) NOT NULL, "model" varchar(100) NOT NULL); args=None
ALTER TABLE "django_content_type" ADD CONSTRAINT "django_content_type_app_label_76bd3d3b_uniq" UNIQUE ("app_label", "model"); (params [])
(0.080) ALTER TABLE "django_content_type" ADD CONSTRAINT "django_content_type_app_label_76bd3d3b_uniq" UNIQUE ("app_label", "model"); args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('contenttypes', '0001_initial', '2017-08-15T19:09:49.601739+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('contenttypes', '0001_initial', datetime.datetime(2017, 8, 15, 19, 9, 49, 601739, tzinfo=<UTC>))
CREATE TABLE "django_admin_log" ("id" serial NOT NULL PRIMARY KEY, "action_time" timestamp with time zone NOT NULL, "object_id" text NULL, "object_repr" varchar(200) NOT NULL, "action_flag" smallint NOT NULL CHECK ("action_flag" >= 0), "change_message" text NOT NULL, "content_type_id" integer NULL, "user_id" integer NOT NULL); (params None)
(0.276) CREATE TABLE "django_admin_log" ("id" serial NOT NULL PRIMARY KEY, "action_time" timestamp with time zone NOT NULL, "object_id" text NULL, "object_repr" varchar(200) NOT NULL, "action_flag" smallint NOT NULL CHECK ("action_flag" >= 0), "change_message" text NOT NULL, "content_type_id" integer NULL, "user_id" integer NOT NULL); args=None
ALTER TABLE "django_admin_log" ADD CONSTRAINT "django_admin_content_type_id_c4bce8eb_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "django_admin_log" ADD CONSTRAINT "django_admin_content_type_id_c4bce8eb_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "django_admin_log" ADD CONSTRAINT "django_admin_log_user_id_c564eba6_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.012) ALTER TABLE "django_admin_log" ADD CONSTRAINT "django_admin_log_user_id_c564eba6_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "django_admin_log_417f1b1c" ON "django_admin_log" ("content_type_id"); (params [])
(0.074) CREATE INDEX "django_admin_log_417f1b1c" ON "django_admin_log" ("content_type_id"); args=[]
CREATE INDEX "django_admin_log_e8701ad4" ON "django_admin_log" ("user_id"); (params [])
(0.115) CREATE INDEX "django_admin_log_e8701ad4" ON "django_admin_log" ("user_id"); args=[]
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('admin', '0001_initial', '2017-08-15T19:09:50.200856+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('admin', '0001_initial', datetime.datetime(2017, 8, 15, 19, 9, 50, 200856, tzinfo=<UTC>))
ALTER TABLE "django_admin_log" ALTER COLUMN "action_time" SET DEFAULT %s; (params [datetime.datetime(2017, 8, 15, 19, 9, 50, 304922, tzinfo=<UTC>)])
(0.003) ALTER TABLE "django_admin_log" ALTER COLUMN "action_time" SET DEFAULT '2017-08-15T19:09:50.304922+00:00'::timestamptz; args=[datetime.datetime(2017, 8, 15, 19, 9, 50, 304922, tzinfo=<UTC>)]
ALTER TABLE "django_admin_log" ALTER COLUMN "action_time" DROP DEFAULT; (params [])
(0.006) ALTER TABLE "django_admin_log" ALTER COLUMN "action_time" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('admin', '0002_logentry_remove_auto_add', '2017-08-15T19:09:50.327936+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('admin', '0002_logentry_remove_auto_add', datetime.datetime(2017, 8, 15, 19, 9, 50, 327936, tzinfo=<UTC>))
CREATE TABLE "aldryn_categories_category" ("id" serial NOT NULL PRIMARY KEY, "lft" integer NOT NULL CHECK ("lft" >= 0), "rgt" integer NOT NULL CHECK ("rgt" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0), "depth" integer NOT NULL CHECK ("depth" >= 0)); (params None)
(0.171) CREATE TABLE "aldryn_categories_category" ("id" serial NOT NULL PRIMARY KEY, "lft" integer NOT NULL CHECK ("lft" >= 0), "rgt" integer NOT NULL CHECK ("rgt" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0), "depth" integer NOT NULL CHECK ("depth" >= 0)); args=None
CREATE TABLE "aldryn_categories_category_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "name" varchar(255) NOT NULL, "slug" varchar(255) NOT NULL, "master_id" integer NULL); (params None)
(0.142) CREATE TABLE "aldryn_categories_category_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "name" varchar(255) NOT NULL, "slug" varchar(255) NOT NULL, "master_id" integer NULL); args=None
ALTER TABLE "aldryn_categories_category_translation" ADD CONSTRAINT "aldryn_categories_category_translat_language_code_3582e565_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.059) ALTER TABLE "aldryn_categories_category_translation" ADD CONSTRAINT "aldryn_categories_category_translat_language_code_3582e565_uniq" UNIQUE ("language_code", "master_id"); args=[]
CREATE INDEX "aldryn_categories_category_caf7cc51" ON "aldryn_categories_category" ("lft"); (params [])
(0.063) CREATE INDEX "aldryn_categories_category_caf7cc51" ON "aldryn_categories_category" ("lft"); args=[]
CREATE INDEX "aldryn_categories_category_0d000fbb" ON "aldryn_categories_category" ("rgt"); (params [])
(0.061) CREATE INDEX "aldryn_categories_category_0d000fbb" ON "aldryn_categories_category" ("rgt"); args=[]
CREATE INDEX "aldryn_categories_category_656442a0" ON "aldryn_categories_category" ("tree_id"); (params [])
(0.055) CREATE INDEX "aldryn_categories_category_656442a0" ON "aldryn_categories_category" ("tree_id"); args=[]
CREATE INDEX "aldryn_categories_category_12a055bf" ON "aldryn_categories_category" ("depth"); (params [])
(0.074) CREATE INDEX "aldryn_categories_category_12a055bf" ON "aldryn_categories_category" ("depth"); args=[]
ALTER TABLE "aldryn_categories_category_translation" ADD CONSTRAINT "aldryn_cate_master_id_9e28f597_fk_aldryn_categories_category_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_categories_category" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.016) ALTER TABLE "aldryn_categories_category_translation" ADD CONSTRAINT "aldryn_cate_master_id_9e28f597_fk_aldryn_categories_category_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_categories_category" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_categories_category_translation_60716c2f" ON "aldryn_categories_category_translation" ("language_code"); (params [])
(0.068) CREATE INDEX "aldryn_categories_category_translation_60716c2f" ON "aldryn_categories_category_translation" ("language_code"); args=[]
CREATE INDEX "aldryn_categories_category_translation_2dbcba41" ON "aldryn_categories_category_translation" ("slug"); (params [])
(0.049) CREATE INDEX "aldryn_categories_category_translation_2dbcba41" ON "aldryn_categories_category_translation" ("slug"); args=[]
CREATE INDEX "aldryn_categories_category_translation_90349b61" ON "aldryn_categories_category_translation" ("master_id"); (params [])
(0.062) CREATE INDEX "aldryn_categories_category_translation_90349b61" ON "aldryn_categories_category_translation" ("master_id"); args=[]
CREATE INDEX "aldryn_categories_category_translat_language_code_95324fde_like" ON "aldryn_categories_category_translation" ("language_code" varchar_pattern_ops); (params [])
(0.062) CREATE INDEX "aldryn_categories_category_translat_language_code_95324fde_like" ON "aldryn_categories_category_translation" ("language_code" varchar_pattern_ops); args=[]
CREATE INDEX "aldryn_categories_category_translation_slug_a8fa2ddf_like" ON "aldryn_categories_category_translation" ("slug" varchar_pattern_ops); (params [])
(0.044) CREATE INDEX "aldryn_categories_category_translation_slug_a8fa2ddf_like" ON "aldryn_categories_category_translation" ("slug" varchar_pattern_ops); args=[]
(0.018)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_categories', '0001_initial', '2017-08-15T19:09:51.391809+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_categories', '0001_initial', datetime.datetime(2017, 8, 15, 19, 9, 51, 391809, tzinfo=<UTC>))
ALTER TABLE "aldryn_categories_category_translation" ALTER COLUMN "slug" SET DEFAULT %s; (params [''])
(0.002) ALTER TABLE "aldryn_categories_category_translation" ALTER COLUMN "slug" SET DEFAULT ''; args=['']
ALTER TABLE "aldryn_categories_category_translation" ALTER COLUMN "slug" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "aldryn_categories_category_translation" ALTER COLUMN "slug" DROP DEFAULT; args=[]
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_categories', '0002_auto_20150109_1415', '2017-08-15T19:09:51.440348+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_categories', '0002_auto_20150109_1415', datetime.datetime(2017, 8, 15, 19, 9, 51, 440348, tzinfo=<UTC>))
ALTER TABLE "aldryn_categories_category_translation" ADD CONSTRAINT "aldryn_categories_category_translat_language_code_6e9e9727_uniq" UNIQUE ("language_code", "slug"); (params [])
(0.042) ALTER TABLE "aldryn_categories_category_translation" ADD CONSTRAINT "aldryn_categories_category_translat_language_code_6e9e9727_uniq" UNIQUE ("language_code", "slug"); args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_categories', '0003_auto_20150128_1359', '2017-08-15T19:09:51.537913+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_categories', '0003_auto_20150128_1359', datetime.datetime(2017, 8, 15, 19, 9, 51, 537913, tzinfo=<UTC>))
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_categories', '0004_auto_20150623_0859', '2017-08-15T19:09:51.596947+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_categories', '0004_auto_20150623_0859', datetime.datetime(2017, 8, 15, 19, 9, 51, 596947, tzinfo=<UTC>))
CREATE TABLE "django_site" ("id" serial NOT NULL PRIMARY KEY, "domain" varchar(100) NOT NULL, "name" varchar(50) NOT NULL); (params None)
(0.074) CREATE TABLE "django_site" ("id" serial NOT NULL PRIMARY KEY, "domain" varchar(100) NOT NULL, "name" varchar(50) NOT NULL); args=None
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('sites', '0001_initial', '2017-08-15T19:09:51.728035+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('sites', '0001_initial', datetime.datetime(2017, 8, 15, 19, 9, 51, 728035, tzinfo=<UTC>))
CREATE TABLE "auth_permission" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, "content_type_id" integer NOT NULL, "codename" varchar(100) NOT NULL); (params None)
(0.071) CREATE TABLE "auth_permission" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, "content_type_id" integer NOT NULL, "codename" varchar(100) NOT NULL); args=None
CREATE TABLE "auth_group" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(80) NOT NULL UNIQUE); (params None)
(0.106) CREATE TABLE "auth_group" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(80) NOT NULL UNIQUE); args=None
CREATE TABLE "auth_group_permissions" ("id" serial NOT NULL PRIMARY KEY, "group_id" integer NOT NULL, "permission_id" integer NOT NULL); (params None)
(0.060) CREATE TABLE "auth_group_permissions" ("id" serial NOT NULL PRIMARY KEY, "group_id" integer NOT NULL, "permission_id" integer NOT NULL); args=None
ALTER TABLE "auth_permission" ADD CONSTRAINT "auth_permiss_content_type_id_2f476e4b_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "auth_permission" ADD CONSTRAINT "auth_permiss_content_type_id_2f476e4b_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "auth_permission" ADD CONSTRAINT "auth_permission_content_type_id_01ab375a_uniq" UNIQUE ("content_type_id", "codename"); (params [])
(0.052) ALTER TABLE "auth_permission" ADD CONSTRAINT "auth_permission_content_type_id_01ab375a_uniq" UNIQUE ("content_type_id", "codename"); args=[]
CREATE INDEX "auth_permission_417f1b1c" ON "auth_permission" ("content_type_id"); (params [])
(0.040) CREATE INDEX "auth_permission_417f1b1c" ON "auth_permission" ("content_type_id"); args=[]
CREATE INDEX "auth_group_name_a6ea08ec_like" ON "auth_group" ("name" varchar_pattern_ops); (params [])
(0.050) CREATE INDEX "auth_group_name_a6ea08ec_like" ON "auth_group" ("name" varchar_pattern_ops); args=[]
ALTER TABLE "auth_group_permissions" ADD CONSTRAINT "auth_group_permissions_group_id_b120cbf9_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "auth_group_permissions" ADD CONSTRAINT "auth_group_permissions_group_id_b120cbf9_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "auth_group_permissions" ADD CONSTRAINT "auth_group_permiss_permission_id_84c5c92e_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "auth_group_permissions" ADD CONSTRAINT "auth_group_permiss_permission_id_84c5c92e_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "auth_group_permissions" ADD CONSTRAINT "auth_group_permissions_group_id_0cd325b0_uniq" UNIQUE ("group_id", "permission_id"); (params [])
(0.076) ALTER TABLE "auth_group_permissions" ADD CONSTRAINT "auth_group_permissions_group_id_0cd325b0_uniq" UNIQUE ("group_id", "permission_id"); args=[]
CREATE INDEX "auth_group_permissions_0e939a4f" ON "auth_group_permissions" ("group_id"); (params [])
(0.058) CREATE INDEX "auth_group_permissions_0e939a4f" ON "auth_group_permissions" ("group_id"); args=[]
CREATE INDEX "auth_group_permissions_8373b171" ON "auth_group_permissions" ("permission_id"); (params [])
(0.043) CREATE INDEX "auth_group_permissions_8373b171" ON "auth_group_permissions" ("permission_id"); args=[]
(0.018)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('auth', '0001_initial', '2017-08-15T19:09:52.506221+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('auth', '0001_initial', datetime.datetime(2017, 8, 15, 19, 9, 52, 506221, tzinfo=<UTC>))
CREATE TABLE "cms_cmsplugin" ("id" serial NOT NULL PRIMARY KEY, "position" smallint NULL CHECK ("position" >= 0), "language" varchar(15) NOT NULL, "plugin_type" varchar(50) NOT NULL, "creation_date" timestamp with time zone NOT NULL, "changed_date" timestamp with time zone NOT NULL, "level" integer NOT NULL CHECK ("level" >= 0), "lft" integer NOT NULL CHECK ("lft" >= 0), "rght" integer NOT NULL CHECK ("rght" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0)); (params None)
(0.058) CREATE TABLE "cms_cmsplugin" ("id" serial NOT NULL PRIMARY KEY, "position" smallint NULL CHECK ("position" >= 0), "language" varchar(15) NOT NULL, "plugin_type" varchar(50) NOT NULL, "creation_date" timestamp with time zone NOT NULL, "changed_date" timestamp with time zone NOT NULL, "level" integer NOT NULL CHECK ("level" >= 0), "lft" integer NOT NULL CHECK ("lft" >= 0), "rght" integer NOT NULL CHECK ("rght" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0)); args=None
CREATE TABLE "cms_aliaspluginmodel" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "plugin_id" integer NULL); (params None)
(0.045) CREATE TABLE "cms_aliaspluginmodel" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "plugin_id" integer NULL); args=None
ALTER TABLE "cms_cmsplugin" ADD COLUMN "parent_id" integer NULL; (params [])
(0.001) ALTER TABLE "cms_cmsplugin" ADD COLUMN "parent_id" integer NULL; args=[]
ALTER TABLE "cms_cmsplugin" ALTER COLUMN "parent_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "cms_cmsplugin" ALTER COLUMN "parent_id" DROP DEFAULT; args=[]
CREATE TABLE "cms_globalpagepermission" ("id" serial NOT NULL PRIMARY KEY, "can_change" boolean NOT NULL, "can_add" boolean NOT NULL, "can_delete" boolean NOT NULL, "can_change_advanced_settings" boolean NOT NULL, "can_publish" boolean NOT NULL, "can_change_permissions" boolean NOT NULL, "can_move_page" boolean NOT NULL, "can_view" boolean NOT NULL, "can_recover_page" boolean NOT NULL, "group_id" integer NULL, "user_id" integer NULL); (params None)
(0.070) CREATE TABLE "cms_globalpagepermission" ("id" serial NOT NULL PRIMARY KEY, "can_change" boolean NOT NULL, "can_add" boolean NOT NULL, "can_delete" boolean NOT NULL, "can_change_advanced_settings" boolean NOT NULL, "can_publish" boolean NOT NULL, "can_change_permissions" boolean NOT NULL, "can_move_page" boolean NOT NULL, "can_view" boolean NOT NULL, "can_recover_page" boolean NOT NULL, "group_id" integer NULL, "user_id" integer NULL); args=None
CREATE TABLE "cms_globalpagepermission_sites" ("id" serial NOT NULL PRIMARY KEY, "globalpagepermission_id" integer NOT NULL, "site_id" integer NOT NULL); (params None)
(0.073) CREATE TABLE "cms_globalpagepermission_sites" ("id" serial NOT NULL PRIMARY KEY, "globalpagepermission_id" integer NOT NULL, "site_id" integer NOT NULL); args=None
CREATE TABLE "cms_page" ("id" serial NOT NULL PRIMARY KEY, "created_by" varchar(70) NOT NULL, "changed_by" varchar(70) NOT NULL, "creation_date" timestamp with time zone NOT NULL, "changed_date" timestamp with time zone NOT NULL, "publication_date" timestamp with time zone NULL, "publication_end_date" timestamp with time zone NULL, "in_navigation" boolean NOT NULL, "soft_root" boolean NOT NULL, "reverse_id" varchar(40) NULL, "navigation_extenders" varchar(80) NULL, "template" varchar(100) NOT NULL, "login_required" boolean NOT NULL, "limit_visibility_in_menu" smallint NULL, "is_home" boolean NOT NULL, "application_urls" varchar(200) NULL, "application_namespace" varchar(200) NULL, "level" integer NOT NULL CHECK ("level" >= 0), "lft" integer NOT NULL CHECK ("lft" >= 0), "rght" integer NOT NULL CHECK ("rght" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0), "publisher_is_draft" boolean NOT NULL, "languages" varchar(255) NULL, "revision_id" integer NOT NULL CHECK ("revision_id" >= 0), "xframe_options" integer NOT NULL, "parent_id" integer NULL, "publisher_public_id" integer NULL UNIQUE, "site_id" integer NOT NULL); (params None)
(0.224) CREATE TABLE "cms_page" ("id" serial NOT NULL PRIMARY KEY, "created_by" varchar(70) NOT NULL, "changed_by" varchar(70) NOT NULL, "creation_date" timestamp with time zone NOT NULL, "changed_date" timestamp with time zone NOT NULL, "publication_date" timestamp with time zone NULL, "publication_end_date" timestamp with time zone NULL, "in_navigation" boolean NOT NULL, "soft_root" boolean NOT NULL, "reverse_id" varchar(40) NULL, "navigation_extenders" varchar(80) NULL, "template" varchar(100) NOT NULL, "login_required" boolean NOT NULL, "limit_visibility_in_menu" smallint NULL, "is_home" boolean NOT NULL, "application_urls" varchar(200) NULL, "application_namespace" varchar(200) NULL, "level" integer NOT NULL CHECK ("level" >= 0), "lft" integer NOT NULL CHECK ("lft" >= 0), "rght" integer NOT NULL CHECK ("rght" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0), "publisher_is_draft" boolean NOT NULL, "languages" varchar(255) NULL, "revision_id" integer NOT NULL CHECK ("revision_id" >= 0), "xframe_options" integer NOT NULL, "parent_id" integer NULL, "publisher_public_id" integer NULL UNIQUE, "site_id" integer NOT NULL); args=None
CREATE TABLE "cms_pagepermission" ("id" serial NOT NULL PRIMARY KEY, "can_change" boolean NOT NULL, "can_add" boolean NOT NULL, "can_delete" boolean NOT NULL, "can_change_advanced_settings" boolean NOT NULL, "can_publish" boolean NOT NULL, "can_change_permissions" boolean NOT NULL, "can_move_page" boolean NOT NULL, "can_view" boolean NOT NULL, "grant_on" integer NOT NULL, "group_id" integer NULL, "page_id" integer NULL, "user_id" integer NULL); (params None)
(0.076) CREATE TABLE "cms_pagepermission" ("id" serial NOT NULL PRIMARY KEY, "can_change" boolean NOT NULL, "can_add" boolean NOT NULL, "can_delete" boolean NOT NULL, "can_change_advanced_settings" boolean NOT NULL, "can_publish" boolean NOT NULL, "can_change_permissions" boolean NOT NULL, "can_move_page" boolean NOT NULL, "can_view" boolean NOT NULL, "grant_on" integer NOT NULL, "group_id" integer NULL, "page_id" integer NULL, "user_id" integer NULL); args=None
CREATE INDEX "cms_cmsplugin_8512ae7d" ON "cms_cmsplugin" ("language"); (params [])
(0.051) CREATE INDEX "cms_cmsplugin_8512ae7d" ON "cms_cmsplugin" ("language"); args=[]
CREATE INDEX "cms_cmsplugin_b5e4cf8f" ON "cms_cmsplugin" ("plugin_type"); (params [])
(0.050) CREATE INDEX "cms_cmsplugin_b5e4cf8f" ON "cms_cmsplugin" ("plugin_type"); args=[]
CREATE INDEX "cms_cmsplugin_c9e9a848" ON "cms_cmsplugin" ("level"); (params [])
(0.047) CREATE INDEX "cms_cmsplugin_c9e9a848" ON "cms_cmsplugin" ("level"); args=[]
CREATE INDEX "cms_cmsplugin_caf7cc51" ON "cms_cmsplugin" ("lft"); (params [])
(0.057) CREATE INDEX "cms_cmsplugin_caf7cc51" ON "cms_cmsplugin" ("lft"); args=[]
CREATE INDEX "cms_cmsplugin_3cfbd988" ON "cms_cmsplugin" ("rght"); (params [])
(0.066) CREATE INDEX "cms_cmsplugin_3cfbd988" ON "cms_cmsplugin" ("rght"); args=[]
CREATE INDEX "cms_cmsplugin_656442a0" ON "cms_cmsplugin" ("tree_id"); (params [])
(0.058) CREATE INDEX "cms_cmsplugin_656442a0" ON "cms_cmsplugin" ("tree_id"); args=[]
CREATE INDEX "cms_cmsplugin_language_bbea8a48_like" ON "cms_cmsplugin" ("language" varchar_pattern_ops); (params [])
(0.037) CREATE INDEX "cms_cmsplugin_language_bbea8a48_like" ON "cms_cmsplugin" ("language" varchar_pattern_ops); args=[]
CREATE INDEX "cms_cmsplugin_plugin_type_94e96ebf_like" ON "cms_cmsplugin" ("plugin_type" varchar_pattern_ops); (params [])
(0.048) CREATE INDEX "cms_cmsplugin_plugin_type_94e96ebf_like" ON "cms_cmsplugin" ("plugin_type" varchar_pattern_ops); args=[]
ALTER TABLE "cms_aliaspluginmodel" ADD CONSTRAINT "cms_aliaspluginmo_cmsplugin_ptr_id_f71dfd31_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "cms_aliaspluginmodel" ADD CONSTRAINT "cms_aliaspluginmo_cmsplugin_ptr_id_f71dfd31_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_aliaspluginmodel" ADD CONSTRAINT "cms_aliaspluginmodel_plugin_id_9867676e_fk_cms_cmsplugin_id" FOREIGN KEY ("plugin_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cms_aliaspluginmodel" ADD CONSTRAINT "cms_aliaspluginmodel_plugin_id_9867676e_fk_cms_cmsplugin_id" FOREIGN KEY ("plugin_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_aliaspluginmodel_b25eaab4" ON "cms_aliaspluginmodel" ("plugin_id"); (params [])
(0.063) CREATE INDEX "cms_aliaspluginmodel_b25eaab4" ON "cms_aliaspluginmodel" ("plugin_id"); args=[]
CREATE INDEX "cms_cmsplugin_6be37982" ON "cms_cmsplugin" ("parent_id"); (params [])
(0.045) CREATE INDEX "cms_cmsplugin_6be37982" ON "cms_cmsplugin" ("parent_id"); args=[]
ALTER TABLE "cms_cmsplugin" ADD CONSTRAINT "cms_cmsplugin_parent_id_fd3bd9dd_fk_cms_cmsplugin_id" FOREIGN KEY ("parent_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "cms_cmsplugin" ADD CONSTRAINT "cms_cmsplugin_parent_id_fd3bd9dd_fk_cms_cmsplugin_id" FOREIGN KEY ("parent_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_globalpagepermission" ADD CONSTRAINT "cms_globalpagepermission_group_id_991b4733_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cms_globalpagepermission" ADD CONSTRAINT "cms_globalpagepermission_group_id_991b4733_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_globalpagepermission" ADD CONSTRAINT "cms_globalpageperm_user_id_a227cee1_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "cms_globalpagepermission" ADD CONSTRAINT "cms_globalpageperm_user_id_a227cee1_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_globalpagepermission_0e939a4f" ON "cms_globalpagepermission" ("group_id"); (params [])
(0.061) CREATE INDEX "cms_globalpagepermission_0e939a4f" ON "cms_globalpagepermission" ("group_id"); args=[]
CREATE INDEX "cms_globalpagepermission_e8701ad4" ON "cms_globalpagepermission" ("user_id"); (params [])
(0.047) CREATE INDEX "cms_globalpagepermission_e8701ad4" ON "cms_globalpagepermission" ("user_id"); args=[]
ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "b4080ff35eabeb4614337f54a925d17d" FOREIGN KEY ("globalpagepermission_id") REFERENCES "cms_globalpagepermission" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "b4080ff35eabeb4614337f54a925d17d" FOREIGN KEY ("globalpagepermission_id") REFERENCES "cms_globalpagepermission" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "cms_globalpagepermission_sit_site_id_00460b53_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "cms_globalpagepermission_sit_site_id_00460b53_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "cms_globalpagepermission__globalpagepermission_id_db684f41_uniq" UNIQUE ("globalpagepermission_id", "site_id"); (params [])
(0.044) ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "cms_globalpagepermission__globalpagepermission_id_db684f41_uniq" UNIQUE ("globalpagepermission_id", "site_id"); args=[]
CREATE INDEX "cms_globalpagepermission_sites_a3d12ecd" ON "cms_globalpagepermission_sites" ("globalpagepermission_id"); (params [])
(0.053) CREATE INDEX "cms_globalpagepermission_sites_a3d12ecd" ON "cms_globalpagepermission_sites" ("globalpagepermission_id"); args=[]
CREATE INDEX "cms_globalpagepermission_sites_9365d6e7" ON "cms_globalpagepermission_sites" ("site_id"); (params [])
(0.049) CREATE INDEX "cms_globalpagepermission_sites_9365d6e7" ON "cms_globalpagepermission_sites" ("site_id"); args=[]
ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_parent_id_f89b72e4_fk_cms_page_id" FOREIGN KEY ("parent_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_parent_id_f89b72e4_fk_cms_page_id" FOREIGN KEY ("parent_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_publisher_public_id_d619fca0_fk_cms_page_id" FOREIGN KEY ("publisher_public_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_publisher_public_id_d619fca0_fk_cms_page_id" FOREIGN KEY ("publisher_public_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_site_id_4323d3ff_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.004) ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_site_id_4323d3ff_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_page_93b83098" ON "cms_page" ("publication_date"); (params [])
(0.042) CREATE INDEX "cms_page_93b83098" ON "cms_page" ("publication_date"); args=[]
CREATE INDEX "cms_page_2247c5f0" ON "cms_page" ("publication_end_date"); (params [])
(0.050) CREATE INDEX "cms_page_2247c5f0" ON "cms_page" ("publication_end_date"); args=[]
CREATE INDEX "cms_page_db3eb53f" ON "cms_page" ("in_navigation"); (params [])
(0.043) CREATE INDEX "cms_page_db3eb53f" ON "cms_page" ("in_navigation"); args=[]
CREATE INDEX "cms_page_1d85575d" ON "cms_page" ("soft_root"); (params [])
(0.044) CREATE INDEX "cms_page_1d85575d" ON "cms_page" ("soft_root"); args=[]
CREATE INDEX "cms_page_3d9ef52f" ON "cms_page" ("reverse_id"); (params [])
(0.046) CREATE INDEX "cms_page_3d9ef52f" ON "cms_page" ("reverse_id"); args=[]
CREATE INDEX "cms_page_7b8acfa6" ON "cms_page" ("navigation_extenders"); (params [])
(0.061) CREATE INDEX "cms_page_7b8acfa6" ON "cms_page" ("navigation_extenders"); args=[]
CREATE INDEX "cms_page_cb540373" ON "cms_page" ("limit_visibility_in_menu"); (params [])
(0.045) CREATE INDEX "cms_page_cb540373" ON "cms_page" ("limit_visibility_in_menu"); args=[]
CREATE INDEX "cms_page_4fa1c803" ON "cms_page" ("is_home"); (params [])
(0.040) CREATE INDEX "cms_page_4fa1c803" ON "cms_page" ("is_home"); args=[]
CREATE INDEX "cms_page_e721871e" ON "cms_page" ("application_urls"); (params [])
(0.043) CREATE INDEX "cms_page_e721871e" ON "cms_page" ("application_urls"); args=[]
CREATE INDEX "cms_page_c9e9a848" ON "cms_page" ("level"); (params [])
(0.055) CREATE INDEX "cms_page_c9e9a848" ON "cms_page" ("level"); args=[]
CREATE INDEX "cms_page_caf7cc51" ON "cms_page" ("lft"); (params [])
(0.053) CREATE INDEX "cms_page_caf7cc51" ON "cms_page" ("lft"); args=[]
CREATE INDEX "cms_page_3cfbd988" ON "cms_page" ("rght"); (params [])
(0.047) CREATE INDEX "cms_page_3cfbd988" ON "cms_page" ("rght"); args=[]
CREATE INDEX "cms_page_656442a0" ON "cms_page" ("tree_id"); (params [])
(0.040) CREATE INDEX "cms_page_656442a0" ON "cms_page" ("tree_id"); args=[]
CREATE INDEX "cms_page_b7700099" ON "cms_page" ("publisher_is_draft"); (params [])
(0.064) CREATE INDEX "cms_page_b7700099" ON "cms_page" ("publisher_is_draft"); args=[]
CREATE INDEX "cms_page_6be37982" ON "cms_page" ("parent_id"); (params [])
(0.046) CREATE INDEX "cms_page_6be37982" ON "cms_page" ("parent_id"); args=[]
CREATE INDEX "cms_page_9365d6e7" ON "cms_page" ("site_id"); (params [])
(0.041) CREATE INDEX "cms_page_9365d6e7" ON "cms_page" ("site_id"); args=[]
CREATE INDEX "cms_page_reverse_id_ffc9ede2_like" ON "cms_page" ("reverse_id" varchar_pattern_ops); (params [])
(0.044) CREATE INDEX "cms_page_reverse_id_ffc9ede2_like" ON "cms_page" ("reverse_id" varchar_pattern_ops); args=[]
CREATE INDEX "cms_page_navigation_extenders_c24af8dd_like" ON "cms_page" ("navigation_extenders" varchar_pattern_ops); (params [])
(0.054) CREATE INDEX "cms_page_navigation_extenders_c24af8dd_like" ON "cms_page" ("navigation_extenders" varchar_pattern_ops); args=[]
CREATE INDEX "cms_page_application_urls_9ef47497_like" ON "cms_page" ("application_urls" varchar_pattern_ops); (params [])
(0.056) CREATE INDEX "cms_page_application_urls_9ef47497_like" ON "cms_page" ("application_urls" varchar_pattern_ops); args=[]
ALTER TABLE "cms_pagepermission" ADD CONSTRAINT "cms_pagepermission_group_id_af5af193_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "cms_pagepermission" ADD CONSTRAINT "cms_pagepermission_group_id_af5af193_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_pagepermission" ADD CONSTRAINT "cms_pagepermission_page_id_0ae9a163_fk_cms_page_id" FOREIGN KEY ("page_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.019) ALTER TABLE "cms_pagepermission" ADD CONSTRAINT "cms_pagepermission_page_id_0ae9a163_fk_cms_page_id" FOREIGN KEY ("page_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_pagepermission" ADD CONSTRAINT "cms_pagepermission_user_id_0c7d2b3c_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cms_pagepermission" ADD CONSTRAINT "cms_pagepermission_user_id_0c7d2b3c_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_pagepermission_0e939a4f" ON "cms_pagepermission" ("group_id"); (params [])
(0.037) CREATE INDEX "cms_pagepermission_0e939a4f" ON "cms_pagepermission" ("group_id"); args=[]
CREATE INDEX "cms_pagepermission_1a63c800" ON "cms_pagepermission" ("page_id"); (params [])
(0.046) CREATE INDEX "cms_pagepermission_1a63c800" ON "cms_pagepermission" ("page_id"); args=[]
CREATE INDEX "cms_pagepermission_e8701ad4" ON "cms_pagepermission" ("user_id"); (params [])
(0.053) CREATE INDEX "cms_pagepermission_e8701ad4" ON "cms_pagepermission" ("user_id"); args=[]
(0.029)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0001_initial', '2017-08-15T19:09:55.534019+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0001_initial', datetime.datetime(2017, 8, 15, 19, 9, 55, 534019, tzinfo=<UTC>))
CREATE TABLE "cms_pageuser" ("customuser_ptr_id" integer NOT NULL PRIMARY KEY, "created_by_id" integer NOT NULL); (params None)
(0.057) CREATE TABLE "cms_pageuser" ("customuser_ptr_id" integer NOT NULL PRIMARY KEY, "created_by_id" integer NOT NULL); args=None
CREATE TABLE "cms_pageusergroup" ("group_ptr_id" integer NOT NULL PRIMARY KEY, "created_by_id" integer NOT NULL); (params None)
(0.133) CREATE TABLE "cms_pageusergroup" ("group_ptr_id" integer NOT NULL PRIMARY KEY, "created_by_id" integer NOT NULL); args=None
CREATE TABLE "cms_placeholder" ("id" serial NOT NULL PRIMARY KEY, "slot" varchar(50) NOT NULL, "default_width" smallint NULL CHECK ("default_width" >= 0)); (params None)
(0.063) CREATE TABLE "cms_placeholder" ("id" serial NOT NULL PRIMARY KEY, "slot" varchar(50) NOT NULL, "default_width" smallint NULL CHECK ("default_width" >= 0)); args=None
CREATE TABLE "cms_page_placeholders" ("id" serial NOT NULL PRIMARY KEY, "page_id" integer NOT NULL, "placeholder_id" integer NOT NULL); (params None)
(0.057) CREATE TABLE "cms_page_placeholders" ("id" serial NOT NULL PRIMARY KEY, "page_id" integer NOT NULL, "placeholder_id" integer NOT NULL); args=None
ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_reverse_id_d5d1256a_uniq" UNIQUE ("reverse_id", "site_id", "publisher_is_draft"); (params [])
(0.046) ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_reverse_id_d5d1256a_uniq" UNIQUE ("reverse_id", "site_id", "publisher_is_draft"); args=[]
ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_publisher_is_draft_dabd6305_uniq" UNIQUE ("publisher_is_draft", "application_namespace"); (params [])
(0.051) ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_publisher_is_draft_dabd6305_uniq" UNIQUE ("publisher_is_draft", "application_namespace"); args=[]
ALTER TABLE "cms_cmsplugin" ADD COLUMN "placeholder_id" integer NULL; (params [])
(0.002) ALTER TABLE "cms_cmsplugin" ADD COLUMN "placeholder_id" integer NULL; args=[]
ALTER TABLE "cms_cmsplugin" ALTER COLUMN "placeholder_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "cms_cmsplugin" ALTER COLUMN "placeholder_id" DROP DEFAULT; args=[]
ALTER TABLE "cms_aliaspluginmodel" ADD COLUMN "alias_placeholder_id" integer NULL; (params [])
(0.001) ALTER TABLE "cms_aliaspluginmodel" ADD COLUMN "alias_placeholder_id" integer NULL; args=[]
ALTER TABLE "cms_aliaspluginmodel" ALTER COLUMN "alias_placeholder_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "cms_aliaspluginmodel" ALTER COLUMN "alias_placeholder_id" DROP DEFAULT; args=[]
CREATE TABLE "cms_placeholderreference" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "placeholder_ref_id" integer NULL); (params None)
(0.048) CREATE TABLE "cms_placeholderreference" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "placeholder_ref_id" integer NULL); args=None
CREATE TABLE "cms_staticplaceholder" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "code" varchar(255) NOT NULL, "dirty" boolean NOT NULL, "creation_method" varchar(20) NOT NULL, "draft_id" integer NULL, "public_id" integer NULL, "site_id" integer NULL); (params None)
(0.100) CREATE TABLE "cms_staticplaceholder" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "code" varchar(255) NOT NULL, "dirty" boolean NOT NULL, "creation_method" varchar(20) NOT NULL, "draft_id" integer NULL, "public_id" integer NULL, "site_id" integer NULL); args=None
ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_code_21ba079c_uniq" UNIQUE ("code", "site_id"); (params [])
(0.035) ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_code_21ba079c_uniq" UNIQUE ("code", "site_id"); args=[]
CREATE TABLE "cms_title" ("id" serial NOT NULL PRIMARY KEY, "language" varchar(15) NOT NULL, "title" varchar(255) NOT NULL, "page_title" varchar(255) NULL, "menu_title" varchar(255) NULL, "meta_description" text NULL, "slug" varchar(255) NOT NULL, "path" varchar(255) NOT NULL, "has_url_overwrite" boolean NOT NULL, "redirect" varchar(255) NULL, "creation_date" timestamp with time zone NOT NULL, "published" boolean NOT NULL, "publisher_is_draft" boolean NOT NULL, "publisher_state" smallint NOT NULL, "page_id" integer NOT NULL, "publisher_public_id" integer NULL UNIQUE); (params None)
(0.188) CREATE TABLE "cms_title" ("id" serial NOT NULL PRIMARY KEY, "language" varchar(15) NOT NULL, "title" varchar(255) NOT NULL, "page_title" varchar(255) NULL, "menu_title" varchar(255) NULL, "meta_description" text NULL, "slug" varchar(255) NOT NULL, "path" varchar(255) NOT NULL, "has_url_overwrite" boolean NOT NULL, "redirect" varchar(255) NULL, "creation_date" timestamp with time zone NOT NULL, "published" boolean NOT NULL, "publisher_is_draft" boolean NOT NULL, "publisher_state" smallint NOT NULL, "page_id" integer NOT NULL, "publisher_public_id" integer NULL UNIQUE); args=None
ALTER TABLE "cms_title" ADD CONSTRAINT "cms_title_language_61aaf084_uniq" UNIQUE ("language", "page_id"); (params [])
(0.043) ALTER TABLE "cms_title" ADD CONSTRAINT "cms_title_language_61aaf084_uniq" UNIQUE ("language", "page_id"); args=[]
CREATE TABLE "cms_usersettings" ("id" serial NOT NULL PRIMARY KEY, "language" varchar(10) NOT NULL, "clipboard_id" integer NULL, "user_id" integer NOT NULL UNIQUE); (params None)
(0.158) CREATE TABLE "cms_usersettings" ("id" serial NOT NULL PRIMARY KEY, "language" varchar(10) NOT NULL, "clipboard_id" integer NULL, "user_id" integer NOT NULL UNIQUE); args=None
ALTER TABLE "cms_pageuser" ADD CONSTRAINT "cms_page_customuser_ptr_id_dae7a156_fk_membership_customuser_id" FOREIGN KEY ("customuser_ptr_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cms_pageuser" ADD CONSTRAINT "cms_page_customuser_ptr_id_dae7a156_fk_membership_customuser_id" FOREIGN KEY ("customuser_ptr_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_pageuser" ADD CONSTRAINT "cms_pageuser_created_by_id_8e9fbf83_fk_membership_customuser_id" FOREIGN KEY ("created_by_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cms_pageuser" ADD CONSTRAINT "cms_pageuser_created_by_id_8e9fbf83_fk_membership_customuser_id" FOREIGN KEY ("created_by_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_pageuser_e93cb7eb" ON "cms_pageuser" ("created_by_id"); (params [])
(0.031) CREATE INDEX "cms_pageuser_e93cb7eb" ON "cms_pageuser" ("created_by_id"); args=[]
ALTER TABLE "cms_pageusergroup" ADD CONSTRAINT "cms_pageusergroup_group_ptr_id_34578d93_fk_auth_group_id" FOREIGN KEY ("group_ptr_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cms_pageusergroup" ADD CONSTRAINT "cms_pageusergroup_group_ptr_id_34578d93_fk_auth_group_id" FOREIGN KEY ("group_ptr_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_pageusergroup" ADD CONSTRAINT "cms_pageuser_created_by_id_7d57fa39_fk_membership_customuser_id" FOREIGN KEY ("created_by_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "cms_pageusergroup" ADD CONSTRAINT "cms_pageuser_created_by_id_7d57fa39_fk_membership_customuser_id" FOREIGN KEY ("created_by_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_pageusergroup_e93cb7eb" ON "cms_pageusergroup" ("created_by_id"); (params [])
(0.046) CREATE INDEX "cms_pageusergroup_e93cb7eb" ON "cms_pageusergroup" ("created_by_id"); args=[]
CREATE INDEX "cms_placeholder_5e97994e" ON "cms_placeholder" ("slot"); (params [])
(0.043) CREATE INDEX "cms_placeholder_5e97994e" ON "cms_placeholder" ("slot"); args=[]
CREATE INDEX "cms_placeholder_slot_0bc04d21_like" ON "cms_placeholder" ("slot" varchar_pattern_ops); (params [])
(0.054) CREATE INDEX "cms_placeholder_slot_0bc04d21_like" ON "cms_placeholder" ("slot" varchar_pattern_ops); args=[]
ALTER TABLE "cms_page_placeholders" ADD CONSTRAINT "cms_page_placeholders_page_id_f2ce8dec_fk_cms_page_id" FOREIGN KEY ("page_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.022) ALTER TABLE "cms_page_placeholders" ADD CONSTRAINT "cms_page_placeholders_page_id_f2ce8dec_fk_cms_page_id" FOREIGN KEY ("page_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_page_placeholders" ADD CONSTRAINT "cms_page_placehol_placeholder_id_6b120886_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "cms_page_placeholders" ADD CONSTRAINT "cms_page_placehol_placeholder_id_6b120886_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_page_placeholders" ADD CONSTRAINT "cms_page_placeholders_page_id_ab7fbfb8_uniq" UNIQUE ("page_id", "placeholder_id"); (params [])
(0.050) ALTER TABLE "cms_page_placeholders" ADD CONSTRAINT "cms_page_placeholders_page_id_ab7fbfb8_uniq" UNIQUE ("page_id", "placeholder_id"); args=[]
CREATE INDEX "cms_page_placeholders_1a63c800" ON "cms_page_placeholders" ("page_id"); (params [])
(0.047) CREATE INDEX "cms_page_placeholders_1a63c800" ON "cms_page_placeholders" ("page_id"); args=[]
CREATE INDEX "cms_page_placeholders_667a6151" ON "cms_page_placeholders" ("placeholder_id"); (params [])
(0.077) CREATE INDEX "cms_page_placeholders_667a6151" ON "cms_page_placeholders" ("placeholder_id"); args=[]
CREATE INDEX "cms_cmsplugin_667a6151" ON "cms_cmsplugin" ("placeholder_id"); (params [])
(0.048) CREATE INDEX "cms_cmsplugin_667a6151" ON "cms_cmsplugin" ("placeholder_id"); args=[]
ALTER TABLE "cms_cmsplugin" ADD CONSTRAINT "cms_cmsplugin_placeholder_id_0bfa3b26_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.019) ALTER TABLE "cms_cmsplugin" ADD CONSTRAINT "cms_cmsplugin_placeholder_id_0bfa3b26_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_aliaspluginmodel_921abf5c" ON "cms_aliaspluginmodel" ("alias_placeholder_id"); (params [])
(0.069) CREATE INDEX "cms_aliaspluginmodel_921abf5c" ON "cms_aliaspluginmodel" ("alias_placeholder_id"); args=[]
ALTER TABLE "cms_aliaspluginmodel" ADD CONSTRAINT "cms_aliaspl_alias_placeholder_id_6d6e0c8a_fk_cms_placeholder_id" FOREIGN KEY ("alias_placeholder_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "cms_aliaspluginmodel" ADD CONSTRAINT "cms_aliaspl_alias_placeholder_id_6d6e0c8a_fk_cms_placeholder_id" FOREIGN KEY ("alias_placeholder_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_placeholderreference" ADD CONSTRAINT "cms_placeholderre_cmsplugin_ptr_id_6977ec85_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cms_placeholderreference" ADD CONSTRAINT "cms_placeholderre_cmsplugin_ptr_id_6977ec85_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_placeholderreference" ADD CONSTRAINT "cms_placehold_placeholder_ref_id_244759b1_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_ref_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cms_placeholderreference" ADD CONSTRAINT "cms_placehold_placeholder_ref_id_244759b1_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_ref_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_placeholderreference_328d0afc" ON "cms_placeholderreference" ("placeholder_ref_id"); (params [])
(0.049) CREATE INDEX "cms_placeholderreference_328d0afc" ON "cms_placeholderreference" ("placeholder_ref_id"); args=[]
ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_draft_id_5aee407b_fk_cms_placeholder_id" FOREIGN KEY ("draft_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_draft_id_5aee407b_fk_cms_placeholder_id" FOREIGN KEY ("draft_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_public_id_876aaa66_fk_cms_placeholder_id" FOREIGN KEY ("public_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_public_id_876aaa66_fk_cms_placeholder_id" FOREIGN KEY ("public_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_site_id_dc6a85b6_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "cms_staticplaceholder" ADD CONSTRAINT "cms_staticplaceholder_site_id_dc6a85b6_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_staticplaceholder_5cb48773" ON "cms_staticplaceholder" ("draft_id"); (params [])
(0.111) CREATE INDEX "cms_staticplaceholder_5cb48773" ON "cms_staticplaceholder" ("draft_id"); args=[]
CREATE INDEX "cms_staticplaceholder_1ee2744d" ON "cms_staticplaceholder" ("public_id"); (params [])
(0.068) CREATE INDEX "cms_staticplaceholder_1ee2744d" ON "cms_staticplaceholder" ("public_id"); args=[]
CREATE INDEX "cms_staticplaceholder_9365d6e7" ON "cms_staticplaceholder" ("site_id"); (params [])
(0.054) CREATE INDEX "cms_staticplaceholder_9365d6e7" ON "cms_staticplaceholder" ("site_id"); args=[]
ALTER TABLE "cms_title" ADD CONSTRAINT "cms_title_page_id_5fade2a3_fk_cms_page_id" FOREIGN KEY ("page_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "cms_title" ADD CONSTRAINT "cms_title_page_id_5fade2a3_fk_cms_page_id" FOREIGN KEY ("page_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_title" ADD CONSTRAINT "cms_title_publisher_public_id_003a2702_fk_cms_title_id" FOREIGN KEY ("publisher_public_id") REFERENCES "cms_title" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cms_title" ADD CONSTRAINT "cms_title_publisher_public_id_003a2702_fk_cms_title_id" FOREIGN KEY ("publisher_public_id") REFERENCES "cms_title" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_title_8512ae7d" ON "cms_title" ("language"); (params [])
(0.044) CREATE INDEX "cms_title_8512ae7d" ON "cms_title" ("language"); args=[]
CREATE INDEX "cms_title_2dbcba41" ON "cms_title" ("slug"); (params [])
(0.082) CREATE INDEX "cms_title_2dbcba41" ON "cms_title" ("slug"); args=[]
CREATE INDEX "cms_title_d6fe1d0b" ON "cms_title" ("path"); (params [])
(0.054) CREATE INDEX "cms_title_d6fe1d0b" ON "cms_title" ("path"); args=[]
CREATE INDEX "cms_title_1268de9a" ON "cms_title" ("has_url_overwrite"); (params [])
(0.044) CREATE INDEX "cms_title_1268de9a" ON "cms_title" ("has_url_overwrite"); args=[]
CREATE INDEX "cms_title_b7700099" ON "cms_title" ("publisher_is_draft"); (params [])
(0.062) CREATE INDEX "cms_title_b7700099" ON "cms_title" ("publisher_is_draft"); args=[]
CREATE INDEX "cms_title_f7202fc0" ON "cms_title" ("publisher_state"); (params [])
(0.206) CREATE INDEX "cms_title_f7202fc0" ON "cms_title" ("publisher_state"); args=[]
CREATE INDEX "cms_title_1a63c800" ON "cms_title" ("page_id"); (params [])
(0.060) CREATE INDEX "cms_title_1a63c800" ON "cms_title" ("page_id"); args=[]
CREATE INDEX "cms_title_language_50a0dfa1_like" ON "cms_title" ("language" varchar_pattern_ops); (params [])
(0.049) CREATE INDEX "cms_title_language_50a0dfa1_like" ON "cms_title" ("language" varchar_pattern_ops); args=[]
CREATE INDEX "cms_title_slug_4947d146_like" ON "cms_title" ("slug" varchar_pattern_ops); (params [])
(0.128) CREATE INDEX "cms_title_slug_4947d146_like" ON "cms_title" ("slug" varchar_pattern_ops); args=[]
CREATE INDEX "cms_title_path_c484314c_like" ON "cms_title" ("path" varchar_pattern_ops); (params [])
(0.076) CREATE INDEX "cms_title_path_c484314c_like" ON "cms_title" ("path" varchar_pattern_ops); args=[]
ALTER TABLE "cms_usersettings" ADD CONSTRAINT "cms_usersettings_clipboard_id_3ae17c19_fk_cms_placeholder_id" FOREIGN KEY ("clipboard_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "cms_usersettings" ADD CONSTRAINT "cms_usersettings_clipboard_id_3ae17c19_fk_cms_placeholder_id" FOREIGN KEY ("clipboard_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cms_usersettings" ADD CONSTRAINT "cms_usersettings_user_id_09633b2d_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cms_usersettings" ADD CONSTRAINT "cms_usersettings_user_id_09633b2d_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cms_usersettings_2655b062" ON "cms_usersettings" ("clipboard_id"); (params [])
(0.047) CREATE INDEX "cms_usersettings_2655b062" ON "cms_usersettings" ("clipboard_id"); args=[]
(0.037)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0002_auto_20140816_1918', '2017-08-15T19:09:59.898919+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0002_auto_20140816_1918', datetime.datetime(2017, 8, 15, 19, 9, 59, 898919, tzinfo=<UTC>))
ALTER TABLE "cms_placeholder" ALTER COLUMN "slot" TYPE varchar(255) USING "slot"::varchar(255); (params [])
(0.007) ALTER TABLE "cms_placeholder" ALTER COLUMN "slot" TYPE varchar(255) USING "slot"::varchar(255); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0003_auto_20140926_2347', '2017-08-15T19:10:00.257313+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0003_auto_20140926_2347', datetime.datetime(2017, 8, 15, 19, 10, 0, 257313, tzinfo=<UTC>))
CREATE TABLE "taggit_tag" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL UNIQUE, "slug" varchar(100) NOT NULL UNIQUE); (params None)
(0.350) CREATE TABLE "taggit_tag" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL UNIQUE, "slug" varchar(100) NOT NULL UNIQUE); args=None
CREATE TABLE "taggit_taggeditem" ("id" serial NOT NULL PRIMARY KEY, "object_id" integer NOT NULL, "content_type_id" integer NOT NULL, "tag_id" integer NOT NULL); (params None)
(0.098) CREATE TABLE "taggit_taggeditem" ("id" serial NOT NULL PRIMARY KEY, "object_id" integer NOT NULL, "content_type_id" integer NOT NULL, "tag_id" integer NOT NULL); args=None
CREATE INDEX "taggit_tag_name_58eb2ed9_like" ON "taggit_tag" ("name" varchar_pattern_ops); (params [])
(0.059) CREATE INDEX "taggit_tag_name_58eb2ed9_like" ON "taggit_tag" ("name" varchar_pattern_ops); args=[]
CREATE INDEX "taggit_tag_slug_6be58b2c_like" ON "taggit_tag" ("slug" varchar_pattern_ops); (params [])
(0.046) CREATE INDEX "taggit_tag_slug_6be58b2c_like" ON "taggit_tag" ("slug" varchar_pattern_ops); args=[]
ALTER TABLE "taggit_taggeditem" ADD CONSTRAINT "taggit_tagge_content_type_id_9957a03c_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "taggit_taggeditem" ADD CONSTRAINT "taggit_tagge_content_type_id_9957a03c_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "taggit_taggeditem" ADD CONSTRAINT "taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id" FOREIGN KEY ("tag_id") REFERENCES "taggit_tag" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.012) ALTER TABLE "taggit_taggeditem" ADD CONSTRAINT "taggit_taggeditem_tag_id_f4f5b767_fk_taggit_tag_id" FOREIGN KEY ("tag_id") REFERENCES "taggit_tag" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "taggit_taggeditem_af31437c" ON "taggit_taggeditem" ("object_id"); (params [])
(0.038) CREATE INDEX "taggit_taggeditem_af31437c" ON "taggit_taggeditem" ("object_id"); args=[]
CREATE INDEX "taggit_taggeditem_417f1b1c" ON "taggit_taggeditem" ("content_type_id"); (params [])
(0.037) CREATE INDEX "taggit_taggeditem_417f1b1c" ON "taggit_taggeditem" ("content_type_id"); args=[]
CREATE INDEX "taggit_taggeditem_76f094bc" ON "taggit_taggeditem" ("tag_id"); (params [])
(0.060) CREATE INDEX "taggit_taggeditem_76f094bc" ON "taggit_taggeditem" ("tag_id"); args=[]
(0.015)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('taggit', '0001_initial', '2017-08-15T19:10:01.237182+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('taggit', '0001_initial', datetime.datetime(2017, 8, 15, 19, 10, 1, 237182, tzinfo=<UTC>))
CREATE TABLE "filer_clipboard" ("id" serial NOT NULL PRIMARY KEY); (params None)
(0.127) CREATE TABLE "filer_clipboard" ("id" serial NOT NULL PRIMARY KEY); args=None
CREATE TABLE "filer_clipboarditem" ("id" serial NOT NULL PRIMARY KEY, "clipboard_id" integer NOT NULL); (params None)
(0.124) CREATE TABLE "filer_clipboarditem" ("id" serial NOT NULL PRIMARY KEY, "clipboard_id" integer NOT NULL); args=None
CREATE TABLE "filer_file" ("id" serial NOT NULL PRIMARY KEY, "file" varchar(255) NULL, "_file_size" integer NULL, "sha1" varchar(40) NOT NULL, "has_all_mandatory_data" boolean NOT NULL, "original_filename" varchar(255) NULL, "name" varchar(255) NOT NULL, "description" text NULL, "uploaded_at" timestamp with time zone NOT NULL, "modified_at" timestamp with time zone NOT NULL, "is_public" boolean NOT NULL); (params None)
(0.193) CREATE TABLE "filer_file" ("id" serial NOT NULL PRIMARY KEY, "file" varchar(255) NULL, "_file_size" integer NULL, "sha1" varchar(40) NOT NULL, "has_all_mandatory_data" boolean NOT NULL, "original_filename" varchar(255) NULL, "name" varchar(255) NOT NULL, "description" text NULL, "uploaded_at" timestamp with time zone NOT NULL, "modified_at" timestamp with time zone NOT NULL, "is_public" boolean NOT NULL); args=None
CREATE TABLE "filer_folder" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "uploaded_at" timestamp with time zone NOT NULL, "created_at" timestamp with time zone NOT NULL, "modified_at" timestamp with time zone NOT NULL, "lft" integer NOT NULL CHECK ("lft" >= 0), "rght" integer NOT NULL CHECK ("rght" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0), "level" integer NOT NULL CHECK ("level" >= 0), "owner_id" integer NULL, "parent_id" integer NULL); (params None)
(0.077) CREATE TABLE "filer_folder" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "uploaded_at" timestamp with time zone NOT NULL, "created_at" timestamp with time zone NOT NULL, "modified_at" timestamp with time zone NOT NULL, "lft" integer NOT NULL CHECK ("lft" >= 0), "rght" integer NOT NULL CHECK ("rght" >= 0), "tree_id" integer NOT NULL CHECK ("tree_id" >= 0), "level" integer NOT NULL CHECK ("level" >= 0), "owner_id" integer NULL, "parent_id" integer NULL); args=None
CREATE TABLE "filer_folderpermission" ("id" serial NOT NULL PRIMARY KEY, "type" smallint NOT NULL, "everybody" boolean NOT NULL, "can_edit" smallint NULL, "can_read" smallint NULL, "can_add_children" smallint NULL, "folder_id" integer NULL, "group_id" integer NULL, "user_id" integer NULL); (params None)
(0.064) CREATE TABLE "filer_folderpermission" ("id" serial NOT NULL PRIMARY KEY, "type" smallint NOT NULL, "everybody" boolean NOT NULL, "can_edit" smallint NULL, "can_read" smallint NULL, "can_add_children" smallint NULL, "folder_id" integer NULL, "group_id" integer NULL, "user_id" integer NULL); args=None
ALTER TABLE "filer_folder" ADD CONSTRAINT "filer_folder_parent_id_bc773258_uniq" UNIQUE ("parent_id", "name"); (params [])
(0.190) ALTER TABLE "filer_folder" ADD CONSTRAINT "filer_folder_parent_id_bc773258_uniq" UNIQUE ("parent_id", "name"); args=[]
ALTER TABLE "filer_file" ADD COLUMN "folder_id" integer NULL; (params [])
(0.001) ALTER TABLE "filer_file" ADD COLUMN "folder_id" integer NULL; args=[]
ALTER TABLE "filer_file" ALTER COLUMN "folder_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "filer_file" ALTER COLUMN "folder_id" DROP DEFAULT; args=[]
ALTER TABLE "filer_file" ADD COLUMN "owner_id" integer NULL; (params [])
(0.001) ALTER TABLE "filer_file" ADD COLUMN "owner_id" integer NULL; args=[]
ALTER TABLE "filer_file" ALTER COLUMN "owner_id" DROP DEFAULT; (params [])
(0.000) ALTER TABLE "filer_file" ALTER COLUMN "owner_id" DROP DEFAULT; args=[]
ALTER TABLE "filer_file" ADD COLUMN "polymorphic_ctype_id" integer NULL; (params [])
(0.001) ALTER TABLE "filer_file" ADD COLUMN "polymorphic_ctype_id" integer NULL; args=[]
ALTER TABLE "filer_file" ALTER COLUMN "polymorphic_ctype_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "filer_file" ALTER COLUMN "polymorphic_ctype_id" DROP DEFAULT; args=[]
ALTER TABLE "filer_clipboarditem" ADD COLUMN "file_id" integer NOT NULL; (params [])
(0.002) ALTER TABLE "filer_clipboarditem" ADD COLUMN "file_id" integer NOT NULL; args=[]
ALTER TABLE "filer_clipboarditem" ALTER COLUMN "file_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "filer_clipboarditem" ALTER COLUMN "file_id" DROP DEFAULT; args=[]
ALTER TABLE "filer_clipboard" ADD COLUMN "user_id" integer NOT NULL; (params [])
(0.001) ALTER TABLE "filer_clipboard" ADD COLUMN "user_id" integer NOT NULL; args=[]
ALTER TABLE "filer_clipboard" ALTER COLUMN "user_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "filer_clipboard" ALTER COLUMN "user_id" DROP DEFAULT; args=[]
CREATE TABLE "filer_image" ("file_ptr_id" integer NOT NULL PRIMARY KEY, "_height" integer NULL, "_width" integer NULL, "date_taken" timestamp with time zone NULL, "default_alt_text" varchar(255) NULL, "default_caption" varchar(255) NULL, "author" varchar(255) NULL, "must_always_publish_author_credit" boolean NOT NULL, "must_always_publish_copyright" boolean NOT NULL, "subject_location" varchar(64) NULL); (params None)
(0.244) CREATE TABLE "filer_image" ("file_ptr_id" integer NOT NULL PRIMARY KEY, "_height" integer NULL, "_width" integer NULL, "date_taken" timestamp with time zone NULL, "default_alt_text" varchar(255) NULL, "default_caption" varchar(255) NULL, "author" varchar(255) NULL, "must_always_publish_author_credit" boolean NOT NULL, "must_always_publish_copyright" boolean NOT NULL, "subject_location" varchar(64) NULL); args=None
ALTER TABLE "filer_clipboarditem" ADD CONSTRAINT "filer_clipboarditem_clipboard_id_7a76518b_fk_filer_clipboard_id" FOREIGN KEY ("clipboard_id") REFERENCES "filer_clipboard" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "filer_clipboarditem" ADD CONSTRAINT "filer_clipboarditem_clipboard_id_7a76518b_fk_filer_clipboard_id" FOREIGN KEY ("clipboard_id") REFERENCES "filer_clipboard" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "filer_clipboarditem_2655b062" ON "filer_clipboarditem" ("clipboard_id"); (params [])
(0.048) CREATE INDEX "filer_clipboarditem_2655b062" ON "filer_clipboarditem" ("clipboard_id"); args=[]
ALTER TABLE "filer_folder" ADD CONSTRAINT "filer_folder_owner_id_be530fb4_fk_membership_customuser_id" FOREIGN KEY ("owner_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "filer_folder" ADD CONSTRAINT "filer_folder_owner_id_be530fb4_fk_membership_customuser_id" FOREIGN KEY ("owner_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "filer_folder" ADD CONSTRAINT "filer_folder_parent_id_308aecda_fk_filer_folder_id" FOREIGN KEY ("parent_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.004) ALTER TABLE "filer_folder" ADD CONSTRAINT "filer_folder_parent_id_308aecda_fk_filer_folder_id" FOREIGN KEY ("parent_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "filer_folder_caf7cc51" ON "filer_folder" ("lft"); (params [])
(0.039) CREATE INDEX "filer_folder_caf7cc51" ON "filer_folder" ("lft"); args=[]
CREATE INDEX "filer_folder_3cfbd988" ON "filer_folder" ("rght"); (params [])
(0.044) CREATE INDEX "filer_folder_3cfbd988" ON "filer_folder" ("rght"); args=[]
CREATE INDEX "filer_folder_656442a0" ON "filer_folder" ("tree_id"); (params [])
(0.030) CREATE INDEX "filer_folder_656442a0" ON "filer_folder" ("tree_id"); args=[]
CREATE INDEX "filer_folder_c9e9a848" ON "filer_folder" ("level"); (params [])
(0.107) CREATE INDEX "filer_folder_c9e9a848" ON "filer_folder" ("level"); args=[]
CREATE INDEX "filer_folder_5e7b1936" ON "filer_folder" ("owner_id"); (params [])
(0.078) CREATE INDEX "filer_folder_5e7b1936" ON "filer_folder" ("owner_id"); args=[]
CREATE INDEX "filer_folder_6be37982" ON "filer_folder" ("parent_id"); (params [])
(0.036) CREATE INDEX "filer_folder_6be37982" ON "filer_folder" ("parent_id"); args=[]
ALTER TABLE "filer_folderpermission" ADD CONSTRAINT "filer_folderpermission_folder_id_5d02f1da_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.014) ALTER TABLE "filer_folderpermission" ADD CONSTRAINT "filer_folderpermission_folder_id_5d02f1da_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "filer_folderpermission" ADD CONSTRAINT "filer_folderpermission_group_id_8901bafa_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "filer_folderpermission" ADD CONSTRAINT "filer_folderpermission_group_id_8901bafa_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "filer_folderpermission" ADD CONSTRAINT "filer_folderpermis_user_id_7673d4b6_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "filer_folderpermission" ADD CONSTRAINT "filer_folderpermis_user_id_7673d4b6_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "filer_folderpermission_a8a44dbb" ON "filer_folderpermission" ("folder_id"); (params [])
(0.047) CREATE INDEX "filer_folderpermission_a8a44dbb" ON "filer_folderpermission" ("folder_id"); args=[]
CREATE INDEX "filer_folderpermission_0e939a4f" ON "filer_folderpermission" ("group_id"); (params [])
(0.106) CREATE INDEX "filer_folderpermission_0e939a4f" ON "filer_folderpermission" ("group_id"); args=[]
CREATE INDEX "filer_folderpermission_e8701ad4" ON "filer_folderpermission" ("user_id"); (params [])
(0.038) CREATE INDEX "filer_folderpermission_e8701ad4" ON "filer_folderpermission" ("user_id"); args=[]
CREATE INDEX "filer_file_a8a44dbb" ON "filer_file" ("folder_id"); (params [])
(0.072) CREATE INDEX "filer_file_a8a44dbb" ON "filer_file" ("folder_id"); args=[]
ALTER TABLE "filer_file" ADD CONSTRAINT "filer_file_folder_id_af803bbb_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "filer_file" ADD CONSTRAINT "filer_file_folder_id_af803bbb_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "filer_file_5e7b1936" ON "filer_file" ("owner_id"); (params [])
(0.048) CREATE INDEX "filer_file_5e7b1936" ON "filer_file" ("owner_id"); args=[]
ALTER TABLE "filer_file" ADD CONSTRAINT "filer_file_owner_id_b9e32671_fk_membership_customuser_id" FOREIGN KEY ("owner_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "filer_file" ADD CONSTRAINT "filer_file_owner_id_b9e32671_fk_membership_customuser_id" FOREIGN KEY ("owner_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "filer_file_d3e32c49" ON "filer_file" ("polymorphic_ctype_id"); (params [])
(0.049) CREATE INDEX "filer_file_d3e32c49" ON "filer_file" ("polymorphic_ctype_id"); args=[]
ALTER TABLE "filer_file" ADD CONSTRAINT "filer_f_polymorphic_ctype_id_f44903c1_fk_django_content_type_id" FOREIGN KEY ("polymorphic_ctype_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "filer_file" ADD CONSTRAINT "filer_f_polymorphic_ctype_id_f44903c1_fk_django_content_type_id" FOREIGN KEY ("polymorphic_ctype_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "filer_clipboarditem_814552b9" ON "filer_clipboarditem" ("file_id"); (params [])
(0.046) CREATE INDEX "filer_clipboarditem_814552b9" ON "filer_clipboarditem" ("file_id"); args=[]
ALTER TABLE "filer_clipboarditem" ADD CONSTRAINT "filer_clipboarditem_file_id_06196f80_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "filer_clipboarditem" ADD CONSTRAINT "filer_clipboarditem_file_id_06196f80_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "filer_clipboard_e8701ad4" ON "filer_clipboard" ("user_id"); (params [])
(0.032) CREATE INDEX "filer_clipboard_e8701ad4" ON "filer_clipboard" ("user_id"); args=[]
ALTER TABLE "filer_clipboard" ADD CONSTRAINT "filer_clipboard_user_id_b52ff0bc_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "filer_clipboard" ADD CONSTRAINT "filer_clipboard_user_id_b52ff0bc_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "filer_image" ADD CONSTRAINT "filer_image_file_ptr_id_3e21d4f0_fk_filer_file_id" FOREIGN KEY ("file_ptr_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "filer_image" ADD CONSTRAINT "filer_image_file_ptr_id_3e21d4f0_fk_filer_file_id" FOREIGN KEY ("file_ptr_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.038)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('filer', '0001_initial', '2017-08-15T19:10:05.659480+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('filer', '0001_initial', datetime.datetime(2017, 8, 15, 19, 10, 5, 659480, tzinfo=<UTC>))
CREATE TABLE "aldryn_people_group" ("id" serial NOT NULL PRIMARY KEY, "address" text NOT NULL, "postal_code" varchar(20) NOT NULL, "city" varchar(255) NOT NULL, "phone" varchar(100) NULL, "fax" varchar(100) NULL, "email" varchar(75) NOT NULL, "website" varchar(200) NULL); (params None)
(0.109) CREATE TABLE "aldryn_people_group" ("id" serial NOT NULL PRIMARY KEY, "address" text NOT NULL, "postal_code" varchar(20) NOT NULL, "city" varchar(255) NOT NULL, "phone" varchar(100) NULL, "fax" varchar(100) NULL, "email" varchar(75) NOT NULL, "website" varchar(200) NULL); args=None
CREATE TABLE "aldryn_people_group_translation" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "description" text NOT NULL, "language_code" varchar(15) NOT NULL, "master_id" integer NULL); (params None)
(0.147) CREATE TABLE "aldryn_people_group_translation" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "description" text NOT NULL, "language_code" varchar(15) NOT NULL, "master_id" integer NULL); args=None
CREATE TABLE "aldryn_people_peopleplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "style" varchar(50) NOT NULL, "group_by_group" boolean NOT NULL, "show_links" boolean NOT NULL, "show_vcard" boolean NOT NULL); (params None)
(0.050) CREATE TABLE "aldryn_people_peopleplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "style" varchar(50) NOT NULL, "group_by_group" boolean NOT NULL, "show_links" boolean NOT NULL, "show_vcard" boolean NOT NULL); args=None
CREATE TABLE "aldryn_people_person" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "phone" varchar(100) NULL, "mobile" varchar(100) NULL, "fax" varchar(100) NULL, "email" varchar(75) NOT NULL, "website" varchar(200) NULL, "slug" varchar(255) NULL UNIQUE, "vcard_enabled" boolean NOT NULL, "group_id" integer NULL, "user_id" integer NULL UNIQUE, "visual_id" integer NULL); (params None)
(0.416) CREATE TABLE "aldryn_people_person" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "phone" varchar(100) NULL, "mobile" varchar(100) NULL, "fax" varchar(100) NULL, "email" varchar(75) NOT NULL, "website" varchar(200) NULL, "slug" varchar(255) NULL UNIQUE, "vcard_enabled" boolean NOT NULL, "group_id" integer NULL, "user_id" integer NULL UNIQUE, "visual_id" integer NULL); args=None
CREATE TABLE "aldryn_people_person_translation" ("id" serial NOT NULL PRIMARY KEY, "function" varchar(255) NOT NULL, "description" text NOT NULL, "language_code" varchar(15) NOT NULL, "master_id" integer NULL); (params None)
(0.116) CREATE TABLE "aldryn_people_person_translation" ("id" serial NOT NULL PRIMARY KEY, "function" varchar(255) NOT NULL, "description" text NOT NULL, "language_code" varchar(15) NOT NULL, "master_id" integer NULL); args=None
ALTER TABLE "aldryn_people_person_translation" ADD CONSTRAINT "aldryn_people_person_translation_language_code_55cab0f6_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.033) ALTER TABLE "aldryn_people_person_translation" ADD CONSTRAINT "aldryn_people_person_translation_language_code_55cab0f6_uniq" UNIQUE ("language_code", "master_id"); args=[]
CREATE TABLE "aldryn_people_peopleplugin_people" ("id" serial NOT NULL PRIMARY KEY, "peopleplugin_id" integer NOT NULL, "person_id" integer NOT NULL, "sort_value" integer NOT NULL); (params None)
(0.065) CREATE TABLE "aldryn_people_peopleplugin_people" ("id" serial NOT NULL PRIMARY KEY, "peopleplugin_id" integer NOT NULL, "person_id" integer NOT NULL, "sort_value" integer NOT NULL); args=None
ALTER TABLE "aldryn_people_group_translation" ADD CONSTRAINT "aldryn_people_group_translation_language_code_fafaba2c_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.049) ALTER TABLE "aldryn_people_group_translation" ADD CONSTRAINT "aldryn_people_group_translation_language_code_fafaba2c_uniq" UNIQUE ("language_code", "master_id"); args=[]
ALTER TABLE "aldryn_people_group_translation" ADD CONSTRAINT "aldryn_people_grou_master_id_567bda2b_fk_aldryn_people_group_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "aldryn_people_group_translation" ADD CONSTRAINT "aldryn_people_grou_master_id_567bda2b_fk_aldryn_people_group_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_people_group_translation_60716c2f" ON "aldryn_people_group_translation" ("language_code"); (params [])
(0.031) CREATE INDEX "aldryn_people_group_translation_60716c2f" ON "aldryn_people_group_translation" ("language_code"); args=[]
CREATE INDEX "aldryn_people_group_translation_90349b61" ON "aldryn_people_group_translation" ("master_id"); (params [])
(0.082) CREATE INDEX "aldryn_people_group_translation_90349b61" ON "aldryn_people_group_translation" ("master_id"); args=[]
CREATE INDEX "aldryn_people_group_translation_language_code_d40f3f14_like" ON "aldryn_people_group_translation" ("language_code" varchar_pattern_ops); (params [])
(0.045) CREATE INDEX "aldryn_people_group_translation_language_code_d40f3f14_like" ON "aldryn_people_group_translation" ("language_code" varchar_pattern_ops); args=[]
ALTER TABLE "aldryn_people_peopleplugin" ADD CONSTRAINT "aldryn_people_peo_cmsplugin_ptr_id_08aba4ae_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "aldryn_people_peopleplugin" ADD CONSTRAINT "aldryn_people_peo_cmsplugin_ptr_id_08aba4ae_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_per_visual_id_6211661f_fk_filer_image_file_ptr_id" FOREIGN KEY ("visual_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_per_visual_id_6211661f_fk_filer_image_file_ptr_id" FOREIGN KEY ("visual_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_people_person_0e939a4f" ON "aldryn_people_person" ("group_id"); (params [])
(0.065) CREATE INDEX "aldryn_people_person_0e939a4f" ON "aldryn_people_person" ("group_id"); args=[]
CREATE INDEX "aldryn_people_person_6e0547d0" ON "aldryn_people_person" ("visual_id"); (params [])
(0.047) CREATE INDEX "aldryn_people_person_6e0547d0" ON "aldryn_people_person" ("visual_id"); args=[]
CREATE INDEX "aldryn_people_person_slug_ffc53444_like" ON "aldryn_people_person" ("slug" varchar_pattern_ops); (params [])
(0.049) CREATE INDEX "aldryn_people_person_slug_ffc53444_like" ON "aldryn_people_person" ("slug" varchar_pattern_ops); args=[]
ALTER TABLE "aldryn_people_person_translation" ADD CONSTRAINT "aldryn_people_per_master_id_a70b6bb1_fk_aldryn_people_person_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "aldryn_people_person_translation" ADD CONSTRAINT "aldryn_people_per_master_id_a70b6bb1_fk_aldryn_people_person_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_people_person_translation_60716c2f" ON "aldryn_people_person_translation" ("language_code"); (params [])
(0.054) CREATE INDEX "aldryn_people_person_translation_60716c2f" ON "aldryn_people_person_translation" ("language_code"); args=[]
CREATE INDEX "aldryn_people_person_translation_90349b61" ON "aldryn_people_person_translation" ("master_id"); (params [])
(0.049) CREATE INDEX "aldryn_people_person_translation_90349b61" ON "aldryn_people_person_translation" ("master_id"); args=[]
CREATE INDEX "aldryn_people_person_translation_language_code_db5e4538_like" ON "aldryn_people_person_translation" ("language_code" varchar_pattern_ops); (params [])
(0.039) CREATE INDEX "aldryn_people_person_translation_language_code_db5e4538_like" ON "aldryn_people_person_translation" ("language_code" varchar_pattern_ops); args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peopleplugin_people_peopleplugin_id_9c48e610_uniq" UNIQUE ("peopleplugin_id", "person_id"); (params [])
(0.046) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peopleplugin_people_peopleplugin_id_9c48e610_uniq" UNIQUE ("peopleplugin_id", "person_id"); args=[]
CREATE INDEX "aldryn_people_peopleplugin_people_7d22caae" ON "aldryn_people_peopleplugin_people" ("peopleplugin_id"); (params [])
(0.140) CREATE INDEX "aldryn_people_peopleplugin_people_7d22caae" ON "aldryn_people_peopleplugin_people" ("peopleplugin_id"); args=[]
CREATE INDEX "aldryn_people_peopleplugin_people_a8452ca7" ON "aldryn_people_peopleplugin_people" ("person_id"); (params [])
(0.068) CREATE INDEX "aldryn_people_peopleplugin_people_a8452ca7" ON "aldryn_people_peopleplugin_people" ("person_id"); args=[]
(0.032)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0001_initial', '2017-08-15T19:10:08.713844+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0001_initial', datetime.datetime(2017, 8, 15, 19, 10, 8, 713844, tzinfo=<UTC>))
CREATE TABLE "aldryn_newsblog_article" ("id" serial NOT NULL PRIMARY KEY, "publishing_date" timestamp with time zone NOT NULL, "is_published" boolean NOT NULL, "is_featured" boolean NOT NULL); (params None)
(0.056) CREATE TABLE "aldryn_newsblog_article" ("id" serial NOT NULL PRIMARY KEY, "publishing_date" timestamp with time zone NOT NULL, "is_published" boolean NOT NULL, "is_featured" boolean NOT NULL); args=None
CREATE TABLE "aldryn_newsblog_article_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "title" varchar(234) NOT NULL, "slug" varchar(255) NOT NULL, "lead_in" text NOT NULL, "meta_title" varchar(255) NOT NULL, "meta_description" text NOT NULL, "meta_keywords" text NOT NULL, "search_data" text NOT NULL, "master_id" integer NULL); (params None)
(0.171) CREATE TABLE "aldryn_newsblog_article_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "title" varchar(234) NOT NULL, "slug" varchar(255) NOT NULL, "lead_in" text NOT NULL, "meta_title" varchar(255) NOT NULL, "meta_description" text NOT NULL, "meta_keywords" text NOT NULL, "search_data" text NOT NULL, "master_id" integer NULL); args=None
CREATE TABLE "aldryn_newsblog_newsblogarchiveplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); (params None)
(0.050) CREATE TABLE "aldryn_newsblog_newsblogarchiveplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=None
CREATE TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "max_articles" integer NOT NULL CHECK ("max_articles" >= 0)); (params None)
(0.067) CREATE TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "max_articles" integer NOT NULL CHECK ("max_articles" >= 0)); args=None
CREATE TABLE "aldryn_newsblog_newsblogauthorsplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); (params None)
(0.077) CREATE TABLE "aldryn_newsblog_newsblogauthorsplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=None
CREATE TABLE "aldryn_newsblog_newsblogcategoriesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); (params None)
(0.091) CREATE TABLE "aldryn_newsblog_newsblogcategoriesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=None
CREATE TABLE "aldryn_newsblog_newsblogconfig" ("id" serial NOT NULL PRIMARY KEY, "type" varchar(100) NOT NULL, "namespace" varchar(100) NOT NULL UNIQUE, "app_data" text NOT NULL, "permalink_type" varchar(8) NOT NULL, "non_permalink_handling" smallint NOT NULL, "paginate_by" integer NOT NULL CHECK ("paginate_by" >= 0), "create_authors" boolean NOT NULL, "search_indexed" boolean NOT NULL, "placeholder_base_sidebar_id" integer NULL, "placeholder_base_top_id" integer NULL, "placeholder_detail_bottom_id" integer NULL, "placeholder_detail_footer_id" integer NULL, "placeholder_detail_top_id" integer NULL, "placeholder_list_footer_id" integer NULL, "placeholder_list_top_id" integer NULL); (params None)
(0.184) CREATE TABLE "aldryn_newsblog_newsblogconfig" ("id" serial NOT NULL PRIMARY KEY, "type" varchar(100) NOT NULL, "namespace" varchar(100) NOT NULL UNIQUE, "app_data" text NOT NULL, "permalink_type" varchar(8) NOT NULL, "non_permalink_handling" smallint NOT NULL, "paginate_by" integer NOT NULL CHECK ("paginate_by" >= 0), "create_authors" boolean NOT NULL, "search_indexed" boolean NOT NULL, "placeholder_base_sidebar_id" integer NULL, "placeholder_base_top_id" integer NULL, "placeholder_detail_bottom_id" integer NULL, "placeholder_detail_footer_id" integer NULL, "placeholder_detail_top_id" integer NULL, "placeholder_list_footer_id" integer NULL, "placeholder_list_top_id" integer NULL); args=None
CREATE TABLE "aldryn_newsblog_newsblogconfig_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "app_title" varchar(234) NOT NULL, "master_id" integer NULL); (params None)
(0.226) CREATE TABLE "aldryn_newsblog_newsblogconfig_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "app_title" varchar(234) NOT NULL, "master_id" integer NULL); args=None
CREATE TABLE "aldryn_newsblog_newsblogfeaturedarticlesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "article_count" integer NOT NULL CHECK ("article_count" >= 0), "app_config_id" integer NOT NULL); (params None)
(0.045) CREATE TABLE "aldryn_newsblog_newsblogfeaturedarticlesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "article_count" integer NOT NULL CHECK ("article_count" >= 0), "app_config_id" integer NOT NULL); args=None
CREATE TABLE "aldryn_newsblog_newsbloglatestarticlesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "latest_articles" integer NOT NULL, "app_config_id" integer NOT NULL); (params None)
(0.074) CREATE TABLE "aldryn_newsblog_newsbloglatestarticlesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "latest_articles" integer NOT NULL, "app_config_id" integer NOT NULL); args=None
CREATE TABLE "aldryn_newsblog_newsblogrelatedplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); (params None)
(0.101) CREATE TABLE "aldryn_newsblog_newsblogrelatedplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=None
CREATE TABLE "aldryn_newsblog_newsblogtagsplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "app_config_id" integer NOT NULL); (params None)
(0.048) CREATE TABLE "aldryn_newsblog_newsblogtagsplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "app_config_id" integer NOT NULL); args=None
ALTER TABLE "aldryn_newsblog_newsblogconfig_translation" ADD CONSTRAINT "aldryn_newsblog_newsblogconfig_tran_language_code_a6d06161_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.100) ALTER TABLE "aldryn_newsblog_newsblogconfig_translation" ADD CONSTRAINT "aldryn_newsblog_newsblogconfig_tran_language_code_a6d06161_uniq" UNIQUE ("language_code", "master_id"); args=[]
ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ADD COLUMN "app_config_id" integer NOT NULL; (params [])
(0.003) ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ADD COLUMN "app_config_id" integer NOT NULL; args=[]
ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ADD COLUMN "app_config_id" integer NOT NULL; (params [])
(0.034) ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ADD COLUMN "app_config_id" integer NOT NULL; args=[]
ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; (params [])
(0.000) ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ADD COLUMN "app_config_id" integer NOT NULL; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ADD COLUMN "app_config_id" integer NOT NULL; args=[]
ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ADD COLUMN "app_config_id" integer NOT NULL; (params [])
(0.002) ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ADD COLUMN "app_config_id" integer NOT NULL; args=[]
ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ALTER COLUMN "app_config_id" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_article_translation" ADD CONSTRAINT "aldryn_newsblog_article_translation_language_code_914685f3_uniq" UNIQUE ("language_code", "slug"); (params [])
(0.042) ALTER TABLE "aldryn_newsblog_article_translation" ADD CONSTRAINT "aldryn_newsblog_article_translation_language_code_914685f3_uniq" UNIQUE ("language_code", "slug"); args=[]
ALTER TABLE "aldryn_newsblog_article_translation" ADD CONSTRAINT "aldryn_newsblog_article_translation_language_code_a0349fa4_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.046) ALTER TABLE "aldryn_newsblog_article_translation" ADD CONSTRAINT "aldryn_newsblog_article_translation_language_code_a0349fa4_uniq" UNIQUE ("language_code", "master_id"); args=[]
ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "app_config_id" integer NOT NULL; (params [])
(0.002) ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "app_config_id" integer NOT NULL; args=[]
ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "app_config_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "app_config_id" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "author_id" integer NULL; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "author_id" integer NULL; args=[]
ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "author_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "author_id" DROP DEFAULT; args=[]
CREATE TABLE "aldryn_newsblog_article_categories" ("id" serial NOT NULL PRIMARY KEY, "article_id" integer NOT NULL, "category_id" integer NOT NULL); (params None)
(0.080) CREATE TABLE "aldryn_newsblog_article_categories" ("id" serial NOT NULL PRIMARY KEY, "article_id" integer NOT NULL, "category_id" integer NOT NULL); args=None
ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "content_id" integer NULL; (params [])
(0.002) ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "content_id" integer NULL; args=[]
ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "content_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "content_id" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "featured_image_id" integer NULL; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "featured_image_id" integer NULL; args=[]
ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "featured_image_id" DROP DEFAULT; (params [])
(0.000) ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "featured_image_id" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "owner_id" integer NOT NULL; (params [])
(0.002) ALTER TABLE "aldryn_newsblog_article" ADD COLUMN "owner_id" integer NOT NULL; args=[]
ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "owner_id" DROP DEFAULT; (params [])
(0.000) ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "owner_id" DROP DEFAULT; args=[]
CREATE TABLE "aldryn_newsblog_article_related" ("id" serial NOT NULL PRIMARY KEY, "from_article_id" integer NOT NULL, "to_article_id" integer NOT NULL, "sort_value" integer NOT NULL); (params None)
(0.055) CREATE TABLE "aldryn_newsblog_article_related" ("id" serial NOT NULL PRIMARY KEY, "from_article_id" integer NOT NULL, "to_article_id" integer NOT NULL, "sort_value" integer NOT NULL); args=None
CREATE INDEX "aldryn_newsblog_article_75892900" ON "aldryn_newsblog_article" ("is_published"); (params [])
(0.050) CREATE INDEX "aldryn_newsblog_article_75892900" ON "aldryn_newsblog_article" ("is_published"); args=[]
CREATE INDEX "aldryn_newsblog_article_39b2604d" ON "aldryn_newsblog_article" ("is_featured"); (params [])
(0.055) CREATE INDEX "aldryn_newsblog_article_39b2604d" ON "aldryn_newsblog_article" ("is_featured"); args=[]
ALTER TABLE "aldryn_newsblog_article_translation" ADD CONSTRAINT "aldryn_newsblo_master_id_ef165122_fk_aldryn_newsblog_article_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.012) ALTER TABLE "aldryn_newsblog_article_translation" ADD CONSTRAINT "aldryn_newsblo_master_id_ef165122_fk_aldryn_newsblog_article_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_article_translation_60716c2f" ON "aldryn_newsblog_article_translation" ("language_code"); (params [])
(0.053) CREATE INDEX "aldryn_newsblog_article_translation_60716c2f" ON "aldryn_newsblog_article_translation" ("language_code"); args=[]
CREATE INDEX "aldryn_newsblog_article_translation_2dbcba41" ON "aldryn_newsblog_article_translation" ("slug"); (params [])
(0.043) CREATE INDEX "aldryn_newsblog_article_translation_2dbcba41" ON "aldryn_newsblog_article_translation" ("slug"); args=[]
CREATE INDEX "aldryn_newsblog_article_translation_90349b61" ON "aldryn_newsblog_article_translation" ("master_id"); (params [])
(0.052) CREATE INDEX "aldryn_newsblog_article_translation_90349b61" ON "aldryn_newsblog_article_translation" ("master_id"); args=[]
CREATE INDEX "aldryn_newsblog_article_translation_language_code_a6c57a68_like" ON "aldryn_newsblog_article_translation" ("language_code" varchar_pattern_ops); (params [])
(0.050) CREATE INDEX "aldryn_newsblog_article_translation_language_code_a6c57a68_like" ON "aldryn_newsblog_article_translation" ("language_code" varchar_pattern_ops); args=[]
CREATE INDEX "aldryn_newsblog_article_translation_slug_e7c9f2e4_like" ON "aldryn_newsblog_article_translation" ("slug" varchar_pattern_ops); (params [])
(0.059) CREATE INDEX "aldryn_newsblog_article_translation_slug_e7c9f2e4_like" ON "aldryn_newsblog_article_translation" ("slug" varchar_pattern_ops); args=[]
ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_bb9f2e87_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_bb9f2e87_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_8d9560d0_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_8d9560d0_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_e07d9843_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_e07d9843_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_2b0f3198_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_2b0f3198_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldr_placeholder_base_sidebar_id_74e2a8b2_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_base_sidebar_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldr_placeholder_base_sidebar_id_74e2a8b2_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_base_sidebar_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldryn_n_placeholder_base_top_id_a65c77e8_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_base_top_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldryn_n_placeholder_base_top_id_a65c77e8_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_base_top_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "ald_placeholder_detail_bottom_id_c1207034_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_detail_bottom_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "ald_placeholder_detail_bottom_id_c1207034_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_detail_bottom_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "ald_placeholder_detail_footer_id_a6b076d4_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_detail_footer_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "ald_placeholder_detail_footer_id_a6b076d4_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_detail_footer_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldryn_placeholder_detail_top_id_ac288c7f_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_detail_top_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldryn_placeholder_detail_top_id_ac288c7f_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_detail_top_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldry_placeholder_list_footer_id_a2dbbead_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_list_footer_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldry_placeholder_list_footer_id_a2dbbead_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_list_footer_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldryn_n_placeholder_list_top_id_c94dd081_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_list_top_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD CONSTRAINT "aldryn_n_placeholder_list_top_id_c94dd081_fk_cms_placeholder_id" FOREIGN KEY ("placeholder_list_top_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_7c049d9f" ON "aldryn_newsblog_newsblogconfig" ("placeholder_base_sidebar_id"); (params [])
(0.045) CREATE INDEX "aldryn_newsblog_newsblogconfig_7c049d9f" ON "aldryn_newsblog_newsblogconfig" ("placeholder_base_sidebar_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_55561819" ON "aldryn_newsblog_newsblogconfig" ("placeholder_base_top_id"); (params [])
(0.054) CREATE INDEX "aldryn_newsblog_newsblogconfig_55561819" ON "aldryn_newsblog_newsblogconfig" ("placeholder_base_top_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_e2d1ed82" ON "aldryn_newsblog_newsblogconfig" ("placeholder_detail_bottom_id"); (params [])
(0.081) CREATE INDEX "aldryn_newsblog_newsblogconfig_e2d1ed82" ON "aldryn_newsblog_newsblogconfig" ("placeholder_detail_bottom_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_5918df56" ON "aldryn_newsblog_newsblogconfig" ("placeholder_detail_footer_id"); (params [])
(0.089) CREATE INDEX "aldryn_newsblog_newsblogconfig_5918df56" ON "aldryn_newsblog_newsblogconfig" ("placeholder_detail_footer_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_90b0156f" ON "aldryn_newsblog_newsblogconfig" ("placeholder_detail_top_id"); (params [])
(0.039) CREATE INDEX "aldryn_newsblog_newsblogconfig_90b0156f" ON "aldryn_newsblog_newsblogconfig" ("placeholder_detail_top_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_8806551e" ON "aldryn_newsblog_newsblogconfig" ("placeholder_list_footer_id"); (params [])
(0.041) CREATE INDEX "aldryn_newsblog_newsblogconfig_8806551e" ON "aldryn_newsblog_newsblogconfig" ("placeholder_list_footer_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_ba2f8115" ON "aldryn_newsblog_newsblogconfig" ("placeholder_list_top_id"); (params [])
(0.117) CREATE INDEX "aldryn_newsblog_newsblogconfig_ba2f8115" ON "aldryn_newsblog_newsblogconfig" ("placeholder_list_top_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_namespace_8e9500a5_like" ON "aldryn_newsblog_newsblogconfig" ("namespace" varchar_pattern_ops); (params [])
(0.051) CREATE INDEX "aldryn_newsblog_newsblogconfig_namespace_8e9500a5_like" ON "aldryn_newsblog_newsblogconfig" ("namespace" varchar_pattern_ops); args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig_translation" ADD CONSTRAINT "aldryn__master_id_8f242d76_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "aldryn_newsblog_newsblogconfig_translation" ADD CONSTRAINT "aldryn__master_id_8f242d76_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("master_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_translation_60716c2f" ON "aldryn_newsblog_newsblogconfig_translation" ("language_code"); (params [])
(0.110) CREATE INDEX "aldryn_newsblog_newsblogconfig_translation_60716c2f" ON "aldryn_newsblog_newsblogconfig_translation" ("language_code"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_translation_90349b61" ON "aldryn_newsblog_newsblogconfig_translation" ("master_id"); (params [])
(0.040) CREATE INDEX "aldryn_newsblog_newsblogconfig_translation_90349b61" ON "aldryn_newsblog_newsblogconfig_translation" ("master_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogconfig_tran_language_code_abb2daa0_like" ON "aldryn_newsblog_newsblogconfig_translation" ("language_code" varchar_pattern_ops); (params [])
(0.043) CREATE INDEX "aldryn_newsblog_newsblogconfig_tran_language_code_abb2daa0_like" ON "aldryn_newsblog_newsblogconfig_translation" ("language_code" varchar_pattern_ops); args=[]
ALTER TABLE "aldryn_newsblog_newsblogfeaturedarticlesplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_daacf4ff_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogfeaturedarticlesplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_daacf4ff_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogfeaturedarticlesplugin" ADD CONSTRAINT "ald_app_config_id_dfd61698_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.004) ALTER TABLE "aldryn_newsblog_newsblogfeaturedarticlesplugin" ADD CONSTRAINT "ald_app_config_id_dfd61698_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsblogfeaturedarticlesplugin_40e85b1f" ON "aldryn_newsblog_newsblogfeaturedarticlesplugin" ("app_config_id"); (params [])
(0.046) CREATE INDEX "aldryn_newsblog_newsblogfeaturedarticlesplugin_40e85b1f" ON "aldryn_newsblog_newsblogfeaturedarticlesplugin" ("app_config_id"); args=[]
ALTER TABLE "aldryn_newsblog_newsbloglatestarticlesplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_3f92bd8d_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsbloglatestarticlesplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_3f92bd8d_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsbloglatestarticlesplugin" ADD CONSTRAINT "ald_app_config_id_fa9883a7_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsbloglatestarticlesplugin" ADD CONSTRAINT "ald_app_config_id_fa9883a7_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsbloglatestarticlesplugin_40e85b1f" ON "aldryn_newsblog_newsbloglatestarticlesplugin" ("app_config_id"); (params [])
(0.059) CREATE INDEX "aldryn_newsblog_newsbloglatestarticlesplugin_40e85b1f" ON "aldryn_newsblog_newsbloglatestarticlesplugin" ("app_config_id"); args=[]
ALTER TABLE "aldryn_newsblog_newsblogrelatedplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_e34e8bee_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsblogrelatedplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_e34e8bee_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogtagsplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_544e5b0c_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogtagsplugin" ADD CONSTRAINT "aldryn_newsblog_n_cmsplugin_ptr_id_544e5b0c_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogtagsplugin" ADD CONSTRAINT "ald_app_config_id_512dbb54_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogtagsplugin" ADD CONSTRAINT "ald_app_config_id_512dbb54_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsblogtagsplugin_40e85b1f" ON "aldryn_newsblog_newsblogtagsplugin" ("app_config_id"); (params [])
(0.042) CREATE INDEX "aldryn_newsblog_newsblogtagsplugin_40e85b1f" ON "aldryn_newsblog_newsblogtagsplugin" ("app_config_id"); args=[]
CREATE INDEX "aldryn_newsblog_newsblogcategoriesplugin_40e85b1f" ON "aldryn_newsblog_newsblogcategoriesplugin" ("app_config_id"); (params [])
(0.040) CREATE INDEX "aldryn_newsblog_newsblogcategoriesplugin_40e85b1f" ON "aldryn_newsblog_newsblogcategoriesplugin" ("app_config_id"); args=[]
ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ADD CONSTRAINT "ald_app_config_id_600879b3_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogcategoriesplugin" ADD CONSTRAINT "ald_app_config_id_600879b3_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsblogauthorsplugin_40e85b1f" ON "aldryn_newsblog_newsblogauthorsplugin" ("app_config_id"); (params [])
(0.067) CREATE INDEX "aldryn_newsblog_newsblogauthorsplugin_40e85b1f" ON "aldryn_newsblog_newsblogauthorsplugin" ("app_config_id"); args=[]
ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ADD CONSTRAINT "ald_app_config_id_bce6f333_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogauthorsplugin" ADD CONSTRAINT "ald_app_config_id_bce6f333_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsblogarticlesearchplugin_40e85b1f" ON "aldryn_newsblog_newsblogarticlesearchplugin" ("app_config_id"); (params [])
(0.035) CREATE INDEX "aldryn_newsblog_newsblogarticlesearchplugin_40e85b1f" ON "aldryn_newsblog_newsblogarticlesearchplugin" ("app_config_id"); args=[]
ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ADD CONSTRAINT "ald_app_config_id_28b9a296_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_newsblogarticlesearchplugin" ADD CONSTRAINT "ald_app_config_id_28b9a296_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_newsblogarchiveplugin_40e85b1f" ON "aldryn_newsblog_newsblogarchiveplugin" ("app_config_id"); (params [])
(0.040) CREATE INDEX "aldryn_newsblog_newsblogarchiveplugin_40e85b1f" ON "aldryn_newsblog_newsblogarchiveplugin" ("app_config_id"); args=[]
ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ADD CONSTRAINT "ald_app_config_id_0a3af4b2_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_newsblogarchiveplugin" ADD CONSTRAINT "ald_app_config_id_0a3af4b2_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_article_40e85b1f" ON "aldryn_newsblog_article" ("app_config_id"); (params [])
(0.100) CREATE INDEX "aldryn_newsblog_article_40e85b1f" ON "aldryn_newsblog_article" ("app_config_id"); args=[]
ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "ald_app_config_id_6555e531_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "ald_app_config_id_6555e531_fk_aldryn_newsblog_newsblogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "aldryn_newsblog_newsblogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_article_4f331e2f" ON "aldryn_newsblog_article" ("author_id"); (params [])
(0.078) CREATE INDEX "aldryn_newsblog_article_4f331e2f" ON "aldryn_newsblog_article" ("author_id"); args=[]
ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_newsblog_a_author_id_e5e747e3_fk_aldryn_people_person_id" FOREIGN KEY ("author_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_newsblog_a_author_id_e5e747e3_fk_aldryn_people_person_id" FOREIGN KEY ("author_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_article_categories" ADD CONSTRAINT "aldryn_newsbl_article_id_bd51b260_fk_aldryn_newsblog_article_id" FOREIGN KEY ("article_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "aldryn_newsblog_article_categories" ADD CONSTRAINT "aldryn_newsbl_article_id_bd51b260_fk_aldryn_newsblog_article_id" FOREIGN KEY ("article_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_article_categories" ADD CONSTRAINT "aldryn_ne_category_id_e9b97cb3_fk_aldryn_categories_category_id" FOREIGN KEY ("category_id") REFERENCES "aldryn_categories_category" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "aldryn_newsblog_article_categories" ADD CONSTRAINT "aldryn_ne_category_id_e9b97cb3_fk_aldryn_categories_category_id" FOREIGN KEY ("category_id") REFERENCES "aldryn_categories_category" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_article_categories" ADD CONSTRAINT "aldryn_newsblog_article_categories_article_id_4661b9b8_uniq" UNIQUE ("article_id", "category_id"); (params [])
(0.054) ALTER TABLE "aldryn_newsblog_article_categories" ADD CONSTRAINT "aldryn_newsblog_article_categories_article_id_4661b9b8_uniq" UNIQUE ("article_id", "category_id"); args=[]
CREATE INDEX "aldryn_newsblog_article_categories_a00c1b00" ON "aldryn_newsblog_article_categories" ("article_id"); (params [])
(0.071) CREATE INDEX "aldryn_newsblog_article_categories_a00c1b00" ON "aldryn_newsblog_article_categories" ("article_id"); args=[]
CREATE INDEX "aldryn_newsblog_article_categories_b583a629" ON "aldryn_newsblog_article_categories" ("category_id"); (params [])
(0.039) CREATE INDEX "aldryn_newsblog_article_categories_b583a629" ON "aldryn_newsblog_article_categories" ("category_id"); args=[]
CREATE INDEX "aldryn_newsblog_article_e14f02ad" ON "aldryn_newsblog_article" ("content_id"); (params [])
(0.069) CREATE INDEX "aldryn_newsblog_article_e14f02ad" ON "aldryn_newsblog_article" ("content_id"); args=[]
ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_newsblog_artic_content_id_c409fd81_fk_cms_placeholder_id" FOREIGN KEY ("content_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_newsblog_artic_content_id_c409fd81_fk_cms_placeholder_id" FOREIGN KEY ("content_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_article_cdbc3e64" ON "aldryn_newsblog_article" ("featured_image_id"); (params [])
(0.046) CREATE INDEX "aldryn_newsblog_article_cdbc3e64" ON "aldryn_newsblog_article" ("featured_image_id"); args=[]
ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_ne_featured_image_id_0966e4bf_fk_filer_image_file_ptr_id" FOREIGN KEY ("featured_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_ne_featured_image_id_0966e4bf_fk_filer_image_file_ptr_id" FOREIGN KEY ("featured_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_newsblog_article_5e7b1936" ON "aldryn_newsblog_article" ("owner_id"); (params [])
(0.060) CREATE INDEX "aldryn_newsblog_article_5e7b1936" ON "aldryn_newsblog_article" ("owner_id"); args=[]
ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_newsblog_a_owner_id_453354fd_fk_membership_customuser_id" FOREIGN KEY ("owner_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_newsblog_a_owner_id_453354fd_fk_membership_customuser_id" FOREIGN KEY ("owner_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_article_related" ADD CONSTRAINT "aldryn_n_from_article_id_6c411149_fk_aldryn_newsblog_article_id" FOREIGN KEY ("from_article_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_article_related" ADD CONSTRAINT "aldryn_n_from_article_id_6c411149_fk_aldryn_newsblog_article_id" FOREIGN KEY ("from_article_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_article_related" ADD CONSTRAINT "aldryn_new_to_article_id_73f9645b_fk_aldryn_newsblog_article_id" FOREIGN KEY ("to_article_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_newsblog_article_related" ADD CONSTRAINT "aldryn_new_to_article_id_73f9645b_fk_aldryn_newsblog_article_id" FOREIGN KEY ("to_article_id") REFERENCES "aldryn_newsblog_article" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_article_related" ADD CONSTRAINT "aldryn_newsblog_article_related_from_article_id_3a35b706_uniq" UNIQUE ("from_article_id", "to_article_id"); (params [])
(0.035) ALTER TABLE "aldryn_newsblog_article_related" ADD CONSTRAINT "aldryn_newsblog_article_related_from_article_id_3a35b706_uniq" UNIQUE ("from_article_id", "to_article_id"); args=[]
CREATE INDEX "aldryn_newsblog_article_related_be73af96" ON "aldryn_newsblog_article_related" ("from_article_id"); (params [])
(0.031) CREATE INDEX "aldryn_newsblog_article_related_be73af96" ON "aldryn_newsblog_article_related" ("from_article_id"); args=[]
CREATE INDEX "aldryn_newsblog_article_related_58b6ddc3" ON "aldryn_newsblog_article_related" ("to_article_id"); (params [])
(0.034) CREATE INDEX "aldryn_newsblog_article_related_58b6ddc3" ON "aldryn_newsblog_article_related" ("to_article_id"); args=[]
(0.025)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0001_initial', '2017-08-15T19:10:22.177873+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0001_initial', datetime.datetime(2017, 8, 15, 19, 10, 22, 177873, tzinfo=<UTC>))
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD COLUMN "template_prefix" varchar(20) NULL; (params [])
(0.002) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD COLUMN "template_prefix" varchar(20) NULL; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "template_prefix" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "template_prefix" DROP DEFAULT; args=[]
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0002_newsblogconfig_template_prefix', '2017-08-15T19:10:22.466066+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0002_newsblogconfig_template_prefix', datetime.datetime(2017, 8, 15, 19, 10, 22, 466066, tzinfo=<UTC>))
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0003_auto_20150422_1921', '2017-08-15T19:10:22.749254+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0003_auto_20150422_1921', datetime.datetime(2017, 8, 15, 19, 10, 22, 749254, tzinfo=<UTC>))
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0004_auto_20150622_1606', '2017-08-15T19:10:22.964898+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0004_auto_20150622_1606', datetime.datetime(2017, 8, 15, 19, 10, 22, 964898, tzinfo=<UTC>))
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0005_auto_20150807_0207', '2017-08-15T19:10:23.146019+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0005_auto_20150807_0207', datetime.datetime(2017, 8, 15, 19, 10, 23, 146019, tzinfo=<UTC>))
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0006_auto_20160105_1013', '2017-08-15T19:10:23.833978+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0006_auto_20160105_1013', datetime.datetime(2017, 8, 15, 19, 10, 23, 833978, tzinfo=<UTC>))
(0.001) SAVEPOINT "s11756_x1"; args=None
(0.005) SELECT COUNT(*) AS "__count" FROM "aldryn_newsblog_newsblogconfig"; args=()
(0.000) RELEASE SAVEPOINT "s11756_x1"; args=None
(0.003) INSERT INTO "cms_placeholder" ("slot", "default_width") VALUES ('placeholder_base_sidebar', NULL) RETURNING "cms_placeholder"."id"; args=('placeholder_base_sidebar', None)
(0.000) INSERT INTO "cms_placeholder" ("slot", "default_width") VALUES ('placeholder_base_top', NULL) RETURNING "cms_placeholder"."id"; args=('placeholder_base_top', None)
(0.000) INSERT INTO "cms_placeholder" ("slot", "default_width") VALUES ('placeholder_detail_bottom', NULL) RETURNING "cms_placeholder"."id"; args=('placeholder_detail_bottom', None)
(0.001) INSERT INTO "cms_placeholder" ("slot", "default_width") VALUES ('placeholder_detail_footer', NULL) RETURNING "cms_placeholder"."id"; args=('placeholder_detail_footer', None)
(0.001) INSERT INTO "cms_placeholder" ("slot", "default_width") VALUES ('placeholder_detail_top', NULL) RETURNING "cms_placeholder"."id"; args=('placeholder_detail_top', None)
(0.001) INSERT INTO "cms_placeholder" ("slot", "default_width") VALUES ('placeholder_list_footer', NULL) RETURNING "cms_placeholder"."id"; args=('placeholder_list_footer', None)
(0.000) INSERT INTO "cms_placeholder" ("slot", "default_width") VALUES ('placeholder_list_top', NULL) RETURNING "cms_placeholder"."id"; args=('placeholder_list_top', None)
(0.001) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" WHERE "cms_placeholder"."id" = 1; args=(1,)
(0.001) UPDATE "cms_placeholder" SET "slot" = 'newsblog_base_sidebar', "default_width" = NULL WHERE "cms_placeholder"."id" = 1; args=('newsblog_base_sidebar', 1)
(0.001) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" WHERE "cms_placeholder"."id" = 2; args=(2,)
(0.000) UPDATE "cms_placeholder" SET "slot" = 'newsblog_base_top', "default_width" = NULL WHERE "cms_placeholder"."id" = 2; args=('newsblog_base_top', 2)
(0.001) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" WHERE "cms_placeholder"."id" = 3; args=(3,)
(0.000) UPDATE "cms_placeholder" SET "slot" = 'newsblog_detail_bottom', "default_width" = NULL WHERE "cms_placeholder"."id" = 3; args=('newsblog_detail_bottom', 3)
(0.000) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" WHERE "cms_placeholder"."id" = 4; args=(4,)
(0.000) UPDATE "cms_placeholder" SET "slot" = 'newsblog_detail_footer', "default_width" = NULL WHERE "cms_placeholder"."id" = 4; args=('newsblog_detail_footer', 4)
(0.000) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" WHERE "cms_placeholder"."id" = 5; args=(5,)
(0.001) UPDATE "cms_placeholder" SET "slot" = 'newsblog_detail_top', "default_width" = NULL WHERE "cms_placeholder"."id" = 5; args=('newsblog_detail_top', 5)
(0.001) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" WHERE "cms_placeholder"."id" = 6; args=(6,)
(0.001) UPDATE "cms_placeholder" SET "slot" = 'newsblog_list_footer', "default_width" = NULL WHERE "cms_placeholder"."id" = 6; args=('newsblog_list_footer', 6)
(0.000) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" WHERE "cms_placeholder"."id" = 7; args=(7,)
(0.001) UPDATE "cms_placeholder" SET "slot" = 'newsblog_list_top', "default_width" = NULL WHERE "cms_placeholder"."id" = 7; args=('newsblog_list_top', 7)
(0.001) UPDATE "aldryn_newsblog_newsblogconfig" SET "type" = 'aldryn_newsblog.cms_appconfig.NewsBlogConfig', "namespace" = 'aldryn_newsblog_default', "app_data" = '{}', "permalink_type" = 'slug', "non_permalink_handling" = 302, "paginate_by" = 5, "create_authors" = true, "search_indexed" = true, "placeholder_base_sidebar_id" = 1, "placeholder_base_top_id" = 2, "placeholder_detail_bottom_id" = 3, "placeholder_detail_footer_id" = 4, "placeholder_detail_top_id" = 5, "placeholder_list_footer_id" = 6, "placeholder_list_top_id" = 7, "template_prefix" = NULL WHERE "aldryn_newsblog_newsblogconfig"."id" = 1; args=('aldryn_newsblog.cms_appconfig.NewsBlogConfig', 'aldryn_newsblog_default', '{}', 'slug', 302, 5, True, True, 1, 2, 3, 4, 5, 6, 7, 1)
(0.005) INSERT INTO "aldryn_newsblog_newsblogconfig" ("id", "type", "namespace", "app_data", "permalink_type", "non_permalink_handling", "paginate_by", "create_authors", "search_indexed", "placeholder_base_sidebar_id", "placeholder_base_top_id", "placeholder_detail_bottom_id", "placeholder_detail_footer_id", "placeholder_detail_top_id", "placeholder_list_footer_id", "placeholder_list_top_id", "template_prefix") VALUES (1, 'aldryn_newsblog.cms_appconfig.NewsBlogConfig', 'aldryn_newsblog_default', '{}', 'slug', 302, 5, true, true, 1, 2, 3, 4, 5, 6, 7, NULL); args=(1, 'aldryn_newsblog.cms_appconfig.NewsBlogConfig', 'aldryn_newsblog_default', '{}', 'slug', 302, 5, True, True, 1, 2, 3, 4, 5, 6, 7, None)
(0.006) INSERT INTO "aldryn_newsblog_newsblogconfig_translation" ("language_code", "app_title", "master_id") VALUES ('', '', 1) RETURNING "aldryn_newsblog_newsblogconfig_translation"."id"; args=('', '', 1)
(0.001) UPDATE "aldryn_newsblog_newsblogconfig_translation" SET "language_code" = 'en-us', "app_title" = 'News & Blog', "master_id" = 1 WHERE "aldryn_newsblog_newsblogconfig_translation"."id" = 1; args=('en-us', 'News & Blog', 1, 1)
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0007_default_newsblog_config', '2017-08-15T19:10:23.956059+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0007_default_newsblog_config', datetime.datetime(2017, 8, 15, 19, 10, 23, 956059, tzinfo=<UTC>))
(0.038)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_newsblog_article'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_newsblog_article']
(0.011)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_newsblog_article'
; args=['public', 'aldryn_newsblog_article']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_newsblog_article'
; args=['aldryn_newsblog_article']
ALTER TABLE "aldryn_newsblog_article" DROP CONSTRAINT "aldryn_ne_featured_image_id_0966e4bf_fk_filer_image_file_ptr_id"; (params [])
(0.002) ALTER TABLE "aldryn_newsblog_article" DROP CONSTRAINT "aldryn_ne_featured_image_id_0966e4bf_fk_filer_image_file_ptr_id"; args=[]
ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_ne_featured_image_id_0966e4bf_fk_filer_image_file_ptr_id" FOREIGN KEY ("featured_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_newsblog_article" ADD CONSTRAINT "aldryn_ne_featured_image_id_0966e4bf_fk_filer_image_file_ptr_id" FOREIGN KEY ("featured_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "app_data" SET DEFAULT %s; (params [b'{}'])
(0.003) ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "app_data" SET DEFAULT '\x7b7d'::bytea; args=[b'{}']
ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "app_data" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "app_data" DROP DEFAULT; args=[]
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0008_auto_20160106_1735', '2017-08-15T19:10:24.474088+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0008_auto_20160106_1735', datetime.datetime(2017, 8, 15, 19, 10, 24, 474088, tzinfo=<UTC>))
ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "is_published" SET DEFAULT %s; (params [False])
(0.001) ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "is_published" SET DEFAULT false; args=[False]
ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "is_published" DROP DEFAULT; (params [])
(0.000) ALTER TABLE "aldryn_newsblog_article" ALTER COLUMN "is_published" DROP DEFAULT; args=[]
(0.001)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0009_auto_20160211_1022', '2017-08-15T19:10:24.621053+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0009_auto_20160211_1022', datetime.datetime(2017, 8, 15, 19, 10, 24, 621053, tzinfo=<UTC>))
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD COLUMN "pagination_pages_start" integer DEFAULT %s NOT NULL CHECK ("pagination_pages_start" >= 0); (params [10])
(0.679) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD COLUMN "pagination_pages_start" integer DEFAULT 10 NOT NULL CHECK ("pagination_pages_start" >= 0); args=[10]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "pagination_pages_start" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "pagination_pages_start" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD COLUMN "pagination_pages_visible" integer DEFAULT %s NOT NULL CHECK ("pagination_pages_visible" >= 0); (params [4])
(0.679) ALTER TABLE "aldryn_newsblog_newsblogconfig" ADD COLUMN "pagination_pages_visible" integer DEFAULT 4 NOT NULL CHECK ("pagination_pages_visible" >= 0); args=[4]
ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "pagination_pages_visible" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "aldryn_newsblog_newsblogconfig" ALTER COLUMN "pagination_pages_visible" DROP DEFAULT; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_newsblog', '0010_auto_20160316_0935', '2017-08-15T19:10:26.584412+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_newsblog', '0010_auto_20160316_0935', datetime.datetime(2017, 8, 15, 19, 10, 26, 584412, tzinfo=<UTC>))
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0002_auto_20150128_1411', '2017-08-15T19:10:28.499174+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0002_auto_20150128_1411', datetime.datetime(2017, 8, 15, 19, 10, 28, 499174, tzinfo=<UTC>))
(0.042)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_peopleplugin_people']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
; args=['public', 'aldryn_people_peopleplugin_people']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_peopleplugin_people'
; args=['aldryn_people_peopleplugin_people']
ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id"; (params [])
(0.003) ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id"; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.042)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_peopleplugin_people']
(0.019)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
; args=['public', 'aldryn_people_peopleplugin_people']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_peopleplugin_people'
; args=['aldryn_people_peopleplugin_people']
ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4"; (params [])
(0.003) ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4"; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0003_auto_20150425_2103', '2017-08-15T19:10:29.011131+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0003_auto_20150425_2103', datetime.datetime(2017, 8, 15, 19, 10, 29, 11131, tzinfo=<UTC>))
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0004_auto_20150622_1606', '2017-08-15T19:10:30.255421+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0004_auto_20150622_1606', datetime.datetime(2017, 8, 15, 19, 10, 30, 255421, tzinfo=<UTC>))
ALTER TABLE "aldryn_people_group_translation" ADD COLUMN "slug" varchar(255) DEFAULT %s NOT NULL; (params [''])
(0.322) ALTER TABLE "aldryn_people_group_translation" ADD COLUMN "slug" varchar(255) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "aldryn_people_group_translation" ALTER COLUMN "slug" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_people_group_translation" ALTER COLUMN "slug" DROP DEFAULT; args=[]
(0.049)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_person']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
; args=['public', 'aldryn_people_person']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_person'
; args=['aldryn_people_person']
ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id"; (params [])
(0.003) ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id"; args=[]
ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.057)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_person']
(0.026)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
; args=['public', 'aldryn_people_person']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_person'
; args=['aldryn_people_person']
ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id"; (params [])
(0.003) ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id"; args=[]
ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "aldryn_people_group_translation_2dbcba41" ON "aldryn_people_group_translation" ("slug"); (params [])
(0.126) CREATE INDEX "aldryn_people_group_translation_2dbcba41" ON "aldryn_people_group_translation" ("slug"); args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0005_auto_20150723_1508', '2017-08-15T19:10:31.814579+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0005_auto_20150723_1508', datetime.datetime(2017, 8, 15, 19, 10, 31, 814579, tzinfo=<UTC>))
CREATE TABLE "aldryn_people_person_groups" ("id" serial NOT NULL PRIMARY KEY, "person_id" integer NOT NULL, "group_id" integer NOT NULL, "sort_value" integer NOT NULL); (params None)
(0.137) CREATE TABLE "aldryn_people_person_groups" ("id" serial NOT NULL PRIMARY KEY, "person_id" integer NOT NULL, "group_id" integer NOT NULL, "sort_value" integer NOT NULL); args=None
ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_per_person_id_18080c1f_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_per_person_id_18080c1f_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_perso_group_id_5ed5e3d0_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.004) ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_perso_group_id_5ed5e3d0_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_person_groups_person_id_667b1dda_uniq" UNIQUE ("person_id", "group_id"); (params [])
(0.041) ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_person_groups_person_id_667b1dda_uniq" UNIQUE ("person_id", "group_id"); args=[]
CREATE INDEX "aldryn_people_person_groups_a8452ca7" ON "aldryn_people_person_groups" ("person_id"); (params [])
(0.045) CREATE INDEX "aldryn_people_person_groups_a8452ca7" ON "aldryn_people_person_groups" ("person_id"); args=[]
CREATE INDEX "aldryn_people_person_groups_0e939a4f" ON "aldryn_people_person_groups" ("group_id"); (params [])
(0.102) CREATE INDEX "aldryn_people_person_groups_0e939a4f" ON "aldryn_people_person_groups" ("group_id"); args=[]
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0006_person_groups', '2017-08-15T19:10:32.496710+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0006_person_groups', datetime.datetime(2017, 8, 15, 19, 10, 32, 496710, tzinfo=<UTC>))
(0.003) SELECT "aldryn_people_person"."id", "aldryn_people_person"."name", "aldryn_people_person"."phone", "aldryn_people_person"."mobile", "aldryn_people_person"."fax", "aldryn_people_person"."email", "aldryn_people_person"."website", "aldryn_people_person"."slug", "aldryn_people_person"."vcard_enabled", "aldryn_people_person"."group_id", "aldryn_people_person"."user_id", "aldryn_people_person"."visual_id" FROM "aldryn_people_person"; args=()
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0007_copy_group', '2017-08-15T19:10:32.534418+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0007_copy_group', datetime.datetime(2017, 8, 15, 19, 10, 32, 534418, tzinfo=<UTC>))
(0.056)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_person']
(0.023)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
; args=['public', 'aldryn_people_person']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_person'
; args=['aldryn_people_person']
ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id"; (params [])
(0.004) ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_perso_group_id_4dc14eb2_fk_aldryn_people_group_id"; args=[]
ALTER TABLE "aldryn_people_person" DROP COLUMN "group_id" CASCADE; (params [])
(0.001) ALTER TABLE "aldryn_people_person" DROP COLUMN "group_id" CASCADE; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0008_remove_person_group', '2017-08-15T19:10:33.246463+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0008_remove_person_group', datetime.datetime(2017, 8, 15, 19, 10, 33, 246463, tzinfo=<UTC>))
ALTER TABLE "aldryn_people_person_translation" ADD COLUMN "name" varchar(255) DEFAULT %s NOT NULL; (params [''])
(0.287) ALTER TABLE "aldryn_people_person_translation" ADD COLUMN "name" varchar(255) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "aldryn_people_person_translation" ALTER COLUMN "name" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "aldryn_people_person_translation" ALTER COLUMN "name" DROP DEFAULT; args=[]
ALTER TABLE "aldryn_people_person_translation" ADD COLUMN "slug" varchar(255) DEFAULT %s NOT NULL; (params [''])
(0.248) ALTER TABLE "aldryn_people_person_translation" ADD COLUMN "slug" varchar(255) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "aldryn_people_person_translation" ALTER COLUMN "slug" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_people_person_translation" ALTER COLUMN "slug" DROP DEFAULT; args=[]
CREATE INDEX "aldryn_people_person_translation_2dbcba41" ON "aldryn_people_person_translation" ("slug"); (params [])
(0.037) CREATE INDEX "aldryn_people_person_translation_2dbcba41" ON "aldryn_people_person_translation" ("slug"); args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0009_auto_20150724_1654', '2017-08-15T19:10:35.074723+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0009_auto_20150724_1654', datetime.datetime(2017, 8, 15, 19, 10, 35, 74723, tzinfo=<UTC>))
(0.003) SELECT "aldryn_people_person"."id", "aldryn_people_person"."name", "aldryn_people_person"."phone", "aldryn_people_person"."mobile", "aldryn_people_person"."fax", "aldryn_people_person"."email", "aldryn_people_person"."website", "aldryn_people_person"."slug", "aldryn_people_person"."vcard_enabled", "aldryn_people_person"."user_id", "aldryn_people_person"."visual_id" FROM "aldryn_people_person" ORDER BY "aldryn_people_person"."name" ASC; args=()
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0010_auto_20150724_1654', '2017-08-15T19:10:35.110985+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0010_auto_20150724_1654', datetime.datetime(2017, 8, 15, 19, 10, 35, 110985, tzinfo=<UTC>))
ALTER TABLE "aldryn_people_person" DROP COLUMN "name" CASCADE; (params [])
(0.002) ALTER TABLE "aldryn_people_person" DROP COLUMN "name" CASCADE; args=[]
ALTER TABLE "aldryn_people_person" DROP COLUMN "slug" CASCADE; (params [])
(0.003) ALTER TABLE "aldryn_people_person" DROP COLUMN "slug" CASCADE; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0011_auto_20150724_1900', '2017-08-15T19:10:36.896220+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0011_auto_20150724_1900', datetime.datetime(2017, 8, 15, 19, 10, 36, 896220, tzinfo=<UTC>))
(0.042)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person_groups'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_person_groups']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person_groups'
; args=['public', 'aldryn_people_person_groups']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_person_groups'
; args=['aldryn_people_person_groups']
ALTER TABLE "aldryn_people_person_groups" DROP CONSTRAINT "aldryn_people_perso_group_id_5ed5e3d0_fk_aldryn_people_group_id"; (params [])
(0.002) ALTER TABLE "aldryn_people_person_groups" DROP CONSTRAINT "aldryn_people_perso_group_id_5ed5e3d0_fk_aldryn_people_group_id"; args=[]
ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_perso_group_id_5ed5e3d0_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_perso_group_id_5ed5e3d0_fk_aldryn_people_group_id" FOREIGN KEY ("group_id") REFERENCES "aldryn_people_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.052)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person_groups'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_person_groups']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person_groups'
; args=['public', 'aldryn_people_person_groups']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_person_groups'
; args=['aldryn_people_person_groups']
ALTER TABLE "aldryn_people_person_groups" DROP CONSTRAINT "aldryn_people_per_person_id_18080c1f_fk_aldryn_people_person_id"; (params [])
(0.002) ALTER TABLE "aldryn_people_person_groups" DROP CONSTRAINT "aldryn_people_per_person_id_18080c1f_fk_aldryn_people_person_id"; args=[]
ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_per_person_id_18080c1f_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "aldryn_people_person_groups" ADD CONSTRAINT "aldryn_people_per_person_id_18080c1f_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0012_auto_20150728_1114', '2017-08-15T19:10:37.362593+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0012_auto_20150728_1114', datetime.datetime(2017, 8, 15, 19, 10, 37, 362593, tzinfo=<UTC>))
ALTER TABLE "aldryn_people_peopleplugin" ADD COLUMN "show_ungrouped" boolean DEFAULT %s NOT NULL; (params [False])
(0.059) ALTER TABLE "aldryn_people_peopleplugin" ADD COLUMN "show_ungrouped" boolean DEFAULT false NOT NULL; args=[False]
ALTER TABLE "aldryn_people_peopleplugin" ALTER COLUMN "show_ungrouped" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "aldryn_people_peopleplugin" ALTER COLUMN "show_ungrouped" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0013_peopleplugin_show_ungrouped', '2017-08-15T19:10:37.725171+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0013_peopleplugin_show_ungrouped', datetime.datetime(2017, 8, 15, 19, 10, 37, 725171, tzinfo=<UTC>))
(0.048)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_peopleplugin_people']
(0.025)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
; args=['public', 'aldryn_people_peopleplugin_people']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_peopleplugin_people'
; args=['aldryn_people_peopleplugin_people']
ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id"; (params [])
(0.003) ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id"; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.044)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_peopleplugin_people']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
; args=['public', 'aldryn_people_peopleplugin_people']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_peopleplugin_people'
; args=['aldryn_people_peopleplugin_people']
ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4"; (params [])
(0.003) ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4"; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0014_auto_20150807_0033', '2017-08-15T19:10:40.273679+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0014_auto_20150807_0033', datetime.datetime(2017, 8, 15, 19, 10, 40, 273679, tzinfo=<UTC>))
(0.090)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_peopleplugin_people']
(0.053)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
; args=['public', 'aldryn_people_peopleplugin_people']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_peopleplugin_people'
; args=['aldryn_people_peopleplugin_people']
ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id"; (params [])
(0.003) ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id"; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "aldryn_people_peo_person_id_bc82db3d_fk_aldryn_people_person_id" FOREIGN KEY ("person_id") REFERENCES "aldryn_people_person" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.080)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_peopleplugin_people']
(0.029)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_peopleplugin_people'
; args=['public', 'aldryn_people_peopleplugin_people']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_peopleplugin_people'
; args=['aldryn_people_peopleplugin_people']
ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4"; (params [])
(0.004) ALTER TABLE "aldryn_people_peopleplugin_people" DROP CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4"; args=[]
ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "aldryn_people_peopleplugin_people" ADD CONSTRAINT "da1cc505e1141e0557e3a1455ee324f4" FOREIGN KEY ("peopleplugin_id") REFERENCES "aldryn_people_peopleplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0015_m2m_remove_null', '2017-08-15T19:10:41.329884+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0015_m2m_remove_null', datetime.datetime(2017, 8, 15, 19, 10, 41, 329884, tzinfo=<UTC>))
(0.053)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
ORDER BY kc.ordinal_position ASC
; args=['public', 'aldryn_people_person']
(0.026)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'aldryn_people_person'
; args=['public', 'aldryn_people_person']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'aldryn_people_person'
; args=['aldryn_people_person']
ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id"; (params [])
(0.004) ALTER TABLE "aldryn_people_person" DROP CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id"; args=[]
ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "aldryn_people_person" ADD CONSTRAINT "aldryn_people_pers_user_id_35c83992_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0016_person_fk_to_one_to_one', '2017-08-15T19:10:42.060371+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0016_person_fk_to_one_to_one', datetime.datetime(2017, 8, 15, 19, 10, 42, 60371, tzinfo=<UTC>))
ALTER TABLE "aldryn_people_group" ALTER COLUMN "email" TYPE varchar(254) USING "email"::varchar(254); (params [])
(0.002) ALTER TABLE "aldryn_people_group" ALTER COLUMN "email" TYPE varchar(254) USING "email"::varchar(254); args=[]
ALTER TABLE "aldryn_people_person" ALTER COLUMN "email" TYPE varchar(254) USING "email"::varchar(254); (params [])
(0.001) ALTER TABLE "aldryn_people_person" ALTER COLUMN "email" TYPE varchar(254) USING "email"::varchar(254); args=[]
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('aldryn_people', '0017_auto_20160109_1951', '2017-08-15T19:10:42.733617+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('aldryn_people', '0017_auto_20160109_1951', datetime.datetime(2017, 8, 15, 19, 10, 42, 733617, tzinfo=<UTC>))
ALTER TABLE "django_content_type" ALTER COLUMN "name" DROP NOT NULL; (params [])
(0.002) ALTER TABLE "django_content_type" ALTER COLUMN "name" DROP NOT NULL; args=[]
ALTER TABLE "django_content_type" DROP COLUMN "name" CASCADE; (params [])
(0.001) ALTER TABLE "django_content_type" DROP COLUMN "name" CASCADE; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('contenttypes', '0002_remove_content_type_name', '2017-08-15T19:10:43.836887+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('contenttypes', '0002_remove_content_type_name', datetime.datetime(2017, 8, 15, 19, 10, 43, 836887, tzinfo=<UTC>))
ALTER TABLE "auth_permission" ALTER COLUMN "name" TYPE varchar(255) USING "name"::varchar(255); (params [])
(0.003) ALTER TABLE "auth_permission" ALTER COLUMN "name" TYPE varchar(255) USING "name"::varchar(255); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('auth', '0002_alter_permission_name_max_length', '2017-08-15T19:10:44.367241+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('auth', '0002_alter_permission_name_max_length', datetime.datetime(2017, 8, 15, 19, 10, 44, 367241, tzinfo=<UTC>))
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('auth', '0003_alter_user_email_max_length', '2017-08-15T19:10:45.065707+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('auth', '0003_alter_user_email_max_length', datetime.datetime(2017, 8, 15, 19, 10, 45, 65707, tzinfo=<UTC>))
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('auth', '0004_alter_user_username_opts', '2017-08-15T19:10:45.706133+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('auth', '0004_alter_user_username_opts', datetime.datetime(2017, 8, 15, 19, 10, 45, 706133, tzinfo=<UTC>))
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('auth', '0005_alter_user_last_login_null', '2017-08-15T19:10:46.806894+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('auth', '0005_alter_user_last_login_null', datetime.datetime(2017, 8, 15, 19, 10, 46, 806894, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('auth', '0006_require_contenttypes_0002', '2017-08-15T19:10:46.821403+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('auth', '0006_require_contenttypes_0002', datetime.datetime(2017, 8, 15, 19, 10, 46, 821403, tzinfo=<UTC>))
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('auth', '0007_alter_validators_add_error_messages', '2017-08-15T19:10:47.289717+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('auth', '0007_alter_validators_add_error_messages', datetime.datetime(2017, 8, 15, 19, 10, 47, 289717, tzinfo=<UTC>))
ALTER TABLE "cms_cmsplugin" ADD COLUMN "depth" integer DEFAULT %s NOT NULL CHECK ("depth" >= 0); (params [0])
(0.572) ALTER TABLE "cms_cmsplugin" ADD COLUMN "depth" integer DEFAULT 0 NOT NULL CHECK ("depth" >= 0); args=[0]
ALTER TABLE "cms_cmsplugin" ALTER COLUMN "depth" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "cms_cmsplugin" ALTER COLUMN "depth" DROP DEFAULT; args=[]
ALTER TABLE "cms_cmsplugin" ADD COLUMN "numchild" integer DEFAULT %s NOT NULL CHECK ("numchild" >= 0); (params [0])
(0.409) ALTER TABLE "cms_cmsplugin" ADD COLUMN "numchild" integer DEFAULT 0 NOT NULL CHECK ("numchild" >= 0); args=[0]
ALTER TABLE "cms_cmsplugin" ALTER COLUMN "numchild" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "cms_cmsplugin" ALTER COLUMN "numchild" DROP DEFAULT; args=[]
ALTER TABLE "cms_cmsplugin" ADD COLUMN "path" varchar(255) DEFAULT %s NOT NULL; (params [''])
(0.587) ALTER TABLE "cms_cmsplugin" ADD COLUMN "path" varchar(255) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "cms_cmsplugin" ALTER COLUMN "path" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "cms_cmsplugin" ALTER COLUMN "path" DROP DEFAULT; args=[]
ALTER TABLE "cms_page" ADD COLUMN "depth" integer DEFAULT %s NOT NULL CHECK ("depth" >= 0); (params [0])
(1.275) ALTER TABLE "cms_page" ADD COLUMN "depth" integer DEFAULT 0 NOT NULL CHECK ("depth" >= 0); args=[0]
ALTER TABLE "cms_page" ALTER COLUMN "depth" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "cms_page" ALTER COLUMN "depth" DROP DEFAULT; args=[]
ALTER TABLE "cms_page" ADD COLUMN "numchild" integer DEFAULT %s NOT NULL CHECK ("numchild" >= 0); (params [0])
(1.517) ALTER TABLE "cms_page" ADD COLUMN "numchild" integer DEFAULT 0 NOT NULL CHECK ("numchild" >= 0); args=[0]
ALTER TABLE "cms_page" ALTER COLUMN "numchild" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "cms_page" ALTER COLUMN "numchild" DROP DEFAULT; args=[]
ALTER TABLE "cms_page" ADD COLUMN "path" varchar(255) DEFAULT %s NOT NULL; (params [''])
(1.438) ALTER TABLE "cms_page" ADD COLUMN "path" varchar(255) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "cms_page" ALTER COLUMN "path" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "cms_page" ALTER COLUMN "path" DROP DEFAULT; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0004_auto_20140924_1038', '2017-08-15T19:10:55.901475+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0004_auto_20140924_1038', datetime.datetime(2017, 8, 15, 19, 10, 55, 901475, tzinfo=<UTC>))
(0.021) SELECT "cms_page"."id", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."level", "cms_page"."lft", "cms_page"."rght", "cms_page"."tree_id", "cms_page"."publisher_is_draft", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "cms_page"."parent_id", "cms_page"."publisher_public_id", "cms_page"."site_id", "cms_page"."depth", "cms_page"."numchild", "cms_page"."path" FROM "cms_page" ORDER BY "cms_page"."tree_id" ASC, "cms_page"."level" ASC, "cms_page"."lft" ASC; args=()
(0.013) SELECT "cms_cmsplugin"."id", "cms_cmsplugin"."position", "cms_cmsplugin"."language", "cms_cmsplugin"."plugin_type", "cms_cmsplugin"."creation_date", "cms_cmsplugin"."changed_date", "cms_cmsplugin"."level", "cms_cmsplugin"."lft", "cms_cmsplugin"."rght", "cms_cmsplugin"."tree_id", "cms_cmsplugin"."parent_id", "cms_cmsplugin"."placeholder_id", "cms_cmsplugin"."depth", "cms_cmsplugin"."numchild", "cms_cmsplugin"."path" FROM "cms_cmsplugin" ORDER BY "cms_cmsplugin"."tree_id" ASC, "cms_cmsplugin"."level" ASC, "cms_cmsplugin"."lft" ASC; args=()
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0005_auto_20140924_1039', '2017-08-15T19:10:55.982044+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0005_auto_20140924_1039', datetime.datetime(2017, 8, 15, 19, 10, 55, 982044, tzinfo=<UTC>))
ALTER TABLE "cms_cmsplugin" DROP COLUMN "level" CASCADE; (params [])
(0.002) ALTER TABLE "cms_cmsplugin" DROP COLUMN "level" CASCADE; args=[]
ALTER TABLE "cms_cmsplugin" DROP COLUMN "lft" CASCADE; (params [])
(0.002) ALTER TABLE "cms_cmsplugin" DROP COLUMN "lft" CASCADE; args=[]
ALTER TABLE "cms_cmsplugin" DROP COLUMN "rght" CASCADE; (params [])
(0.003) ALTER TABLE "cms_cmsplugin" DROP COLUMN "rght" CASCADE; args=[]
ALTER TABLE "cms_cmsplugin" DROP COLUMN "tree_id" CASCADE; (params [])
(0.003) ALTER TABLE "cms_cmsplugin" DROP COLUMN "tree_id" CASCADE; args=[]
ALTER TABLE "cms_page" DROP COLUMN "level" CASCADE; (params [])
(0.004) ALTER TABLE "cms_page" DROP COLUMN "level" CASCADE; args=[]
ALTER TABLE "cms_page" DROP COLUMN "lft" CASCADE; (params [])
(0.002) ALTER TABLE "cms_page" DROP COLUMN "lft" CASCADE; args=[]
ALTER TABLE "cms_page" DROP COLUMN "rght" CASCADE; (params [])
(0.003) ALTER TABLE "cms_page" DROP COLUMN "rght" CASCADE; args=[]
ALTER TABLE "cms_page" DROP COLUMN "tree_id" CASCADE; (params [])
(0.002) ALTER TABLE "cms_page" DROP COLUMN "tree_id" CASCADE; args=[]
ALTER TABLE "cms_cmsplugin" ADD CONSTRAINT "cms_cmsplugin_path_4917bb44_uniq" UNIQUE ("path"); (params [])
(0.092) ALTER TABLE "cms_cmsplugin" ADD CONSTRAINT "cms_cmsplugin_path_4917bb44_uniq" UNIQUE ("path"); args=[]
CREATE INDEX "cms_cmsplugin_path_4917bb44_like" ON "cms_cmsplugin" ("path" varchar_pattern_ops); (params [])
(0.046) CREATE INDEX "cms_cmsplugin_path_4917bb44_like" ON "cms_cmsplugin" ("path" varchar_pattern_ops); args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0006_auto_20140924_1110', '2017-08-15T19:11:00.093289+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0006_auto_20140924_1110', datetime.datetime(2017, 8, 15, 19, 11, 0, 93289, tzinfo=<UTC>))
ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_path_d3a06f3d_uniq" UNIQUE ("path"); (params [])
(0.041) ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_path_d3a06f3d_uniq" UNIQUE ("path"); args=[]
CREATE INDEX "cms_page_path_d3a06f3d_like" ON "cms_page" ("path" varchar_pattern_ops); (params [])
(0.038) CREATE INDEX "cms_page_path_d3a06f3d_like" ON "cms_page" ("path" varchar_pattern_ops); args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0007_auto_20141028_1559', '2017-08-15T19:11:00.517120+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0007_auto_20141028_1559', datetime.datetime(2017, 8, 15, 19, 11, 0, 517120, tzinfo=<UTC>))
ALTER TABLE "cms_title" ALTER COLUMN "redirect" TYPE varchar(2048) USING "redirect"::varchar(2048); (params [])
(0.003) ALTER TABLE "cms_title" ALTER COLUMN "redirect" TYPE varchar(2048) USING "redirect"::varchar(2048); args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0008_auto_20150208_2149', '2017-08-15T19:11:00.929475+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0008_auto_20150208_2149', datetime.datetime(2017, 8, 15, 19, 11, 0, 929475, tzinfo=<UTC>))
(0.098)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cms_page'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cms_page']
(0.030)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cms_page'
; args=['public', 'cms_page']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cms_page'
; args=['cms_page']
ALTER TABLE "cms_page" DROP CONSTRAINT "cms_page_publisher_is_draft_dabd6305_uniq"; (params [])
(0.002) ALTER TABLE "cms_page" DROP CONSTRAINT "cms_page_publisher_is_draft_dabd6305_uniq"; args=[]
ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_publisher_is_draft_8c776642_uniq" UNIQUE ("publisher_is_draft", "site_id", "application_namespace"); (params [])
(0.048) ALTER TABLE "cms_page" ADD CONSTRAINT "cms_page_publisher_is_draft_8c776642_uniq" UNIQUE ("publisher_is_draft", "site_id", "application_namespace"); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0008_auto_20150121_0059', '2017-08-15T19:11:01.724161+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0008_auto_20150121_0059', datetime.datetime(2017, 8, 15, 19, 11, 1, 724161, tzinfo=<UTC>))
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0009_merge', '2017-08-15T19:11:01.739173+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0009_merge', datetime.datetime(2017, 8, 15, 19, 11, 1, 739173, tzinfo=<UTC>))
(0.004) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'placeholder' AND "django_content_type"."app_label" = 'cms'); args=('placeholder', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'placeholder' AND "django_content_type"."app_label" = 'cms'); args=('placeholder', 'cms')
(0.000) SAVEPOINT "s11756_x2"; args=None
(0.006) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'placeholder') RETURNING "django_content_type"."id"; args=('cms', 'placeholder')
(0.000) RELEASE SAVEPOINT "s11756_x2"; args=None
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'page' AND "django_content_type"."app_label" = 'cms'); args=('page', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'page' AND "django_content_type"."app_label" = 'cms'); args=('page', 'cms')
(0.000) SAVEPOINT "s11756_x3"; args=None
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'page') RETURNING "django_content_type"."id"; args=('cms', 'page')
(0.001) RELEASE SAVEPOINT "s11756_x3"; args=None
(0.006) SELECT "auth_permission"."id", "auth_permission"."name", "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" WHERE ("auth_permission"."name" = 'Can use Structure mode' AND "auth_permission"."codename" = 'use_structure' AND "auth_permission"."content_type_id" = 1); args=('Can use Structure mode', 'use_structure', 1)
(0.000) SAVEPOINT "s11756_x4"; args=None
(0.006) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can use Structure mode', 1, 'use_structure') RETURNING "auth_permission"."id"; args=('Can use Structure mode', 1, 'use_structure')
(0.001) RELEASE SAVEPOINT "s11756_x4"; args=None
(0.002) SELECT "auth_permission"."id", "auth_permission"."name", "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" WHERE ("auth_permission"."name" = 'Can change page' AND "auth_permission"."codename" = 'change_page' AND "auth_permission"."content_type_id" = 2); args=('Can change page', 'change_page', 2)
(0.001) SAVEPOINT "s11756_x5"; args=None
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can change page', 2, 'change_page') RETURNING "auth_permission"."id"; args=('Can change page', 2, 'change_page')
(0.001) RELEASE SAVEPOINT "s11756_x5"; args=None
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0010_migrate_use_structure', '2017-08-15T19:11:02.353328+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0010_migrate_use_structure', datetime.datetime(2017, 8, 15, 19, 11, 2, 353328, tzinfo=<UTC>))
ALTER TABLE "cms_page" ALTER COLUMN "changed_by" TYPE varchar(255) USING "changed_by"::varchar(255); (params [])
(0.003) ALTER TABLE "cms_page" ALTER COLUMN "changed_by" TYPE varchar(255) USING "changed_by"::varchar(255); args=[]
ALTER TABLE "cms_page" ALTER COLUMN "created_by" TYPE varchar(255) USING "created_by"::varchar(255); (params [])
(0.001) ALTER TABLE "cms_page" ALTER COLUMN "created_by" TYPE varchar(255) USING "created_by"::varchar(255); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0011_auto_20150419_1006', '2017-08-15T19:11:03.569389+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0011_auto_20150419_1006', datetime.datetime(2017, 8, 15, 19, 11, 3, 569389, tzinfo=<UTC>))
(0.063)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cms_globalpagepermission_sites'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cms_globalpagepermission_sites']
(0.027)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cms_globalpagepermission_sites'
; args=['public', 'cms_globalpagepermission_sites']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cms_globalpagepermission_sites'
; args=['cms_globalpagepermission_sites']
ALTER TABLE "cms_globalpagepermission_sites" DROP CONSTRAINT "cms_globalpagepermission_sit_site_id_00460b53_fk_django_site_id"; (params [])
(0.003) ALTER TABLE "cms_globalpagepermission_sites" DROP CONSTRAINT "cms_globalpagepermission_sit_site_id_00460b53_fk_django_site_id"; args=[]
ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "cms_globalpagepermission_sit_site_id_00460b53_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "cms_globalpagepermission_sit_site_id_00460b53_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.048)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cms_globalpagepermission_sites'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cms_globalpagepermission_sites']
(0.016)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cms_globalpagepermission_sites'
; args=['public', 'cms_globalpagepermission_sites']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cms_globalpagepermission_sites'
; args=['cms_globalpagepermission_sites']
ALTER TABLE "cms_globalpagepermission_sites" DROP CONSTRAINT "b4080ff35eabeb4614337f54a925d17d"; (params [])
(0.002) ALTER TABLE "cms_globalpagepermission_sites" DROP CONSTRAINT "b4080ff35eabeb4614337f54a925d17d"; args=[]
ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "b4080ff35eabeb4614337f54a925d17d" FOREIGN KEY ("globalpagepermission_id") REFERENCES "cms_globalpagepermission" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cms_globalpagepermission_sites" ADD CONSTRAINT "b4080ff35eabeb4614337f54a925d17d" FOREIGN KEY ("globalpagepermission_id") REFERENCES "cms_globalpagepermission" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.038)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cms_usersettings'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cms_usersettings']
(0.019)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cms_usersettings'
; args=['public', 'cms_usersettings']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cms_usersettings'
; args=['cms_usersettings']
ALTER TABLE "cms_usersettings" DROP CONSTRAINT "cms_usersettings_user_id_09633b2d_fk_membership_customuser_id"; (params [])
(0.003) ALTER TABLE "cms_usersettings" DROP CONSTRAINT "cms_usersettings_user_id_09633b2d_fk_membership_customuser_id"; args=[]
ALTER TABLE "cms_usersettings" ADD CONSTRAINT "cms_usersettings_user_id_09633b2d_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cms_usersettings" ADD CONSTRAINT "cms_usersettings_user_id_09633b2d_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0012_auto_20150607_2207', '2017-08-15T19:11:04.786523+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0012_auto_20150607_2207', datetime.datetime(2017, 8, 15, 19, 11, 4, 786523, tzinfo=<UTC>))
CREATE TABLE "cms_urlconfrevision" ("id" serial NOT NULL PRIMARY KEY, "revision" varchar(255) NOT NULL); (params None)
(0.099) CREATE TABLE "cms_urlconfrevision" ("id" serial NOT NULL PRIMARY KEY, "revision" varchar(255) NOT NULL); args=None
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0013_urlconfrevision', '2017-08-15T19:11:04.946730+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0013_urlconfrevision', datetime.datetime(2017, 8, 15, 19, 11, 4, 946730, tzinfo=<UTC>))
(0.003) UPDATE "auth_permission" SET "name" = 'Can change page' WHERE ("auth_permission"."name" = '' AND "auth_permission"."codename" = 'change_page' AND "auth_permission"."content_type_id" = 2); args=('Can change page', '', 'change_page', 2)
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cms', '0014_auto_20160404_1908', '2017-08-15T19:11:04.991781+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cms', '0014_auto_20160404_1908', datetime.datetime(2017, 8, 15, 19, 11, 4, 991781, tzinfo=<UTC>))
CREATE TABLE "cmsplugin_filer_file_filerfile" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "title" varchar(255) NULL, "target_blank" boolean NOT NULL, "style" varchar(255) NOT NULL, "file_id" integer NOT NULL); (params None)
(0.147) CREATE TABLE "cmsplugin_filer_file_filerfile" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "title" varchar(255) NULL, "target_blank" boolean NOT NULL, "style" varchar(255) NOT NULL, "file_id" integer NOT NULL); args=None
ALTER TABLE "cmsplugin_filer_file_filerfile" ADD CONSTRAINT "cmsplugin_filer_f_cmsplugin_ptr_id_29c8a3bc_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cmsplugin_filer_file_filerfile" ADD CONSTRAINT "cmsplugin_filer_f_cmsplugin_ptr_id_29c8a3bc_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_file_filerfile" ADD CONSTRAINT "cmsplugin_filer_file_filerfil_file_id_50ca113b_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "cmsplugin_filer_file_filerfile" ADD CONSTRAINT "cmsplugin_filer_file_filerfil_file_id_50ca113b_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cmsplugin_filer_file_filerfile_814552b9" ON "cmsplugin_filer_file_filerfile" ("file_id"); (params [])
(0.057) CREATE INDEX "cmsplugin_filer_file_filerfile_814552b9" ON "cmsplugin_filer_file_filerfile" ("file_id"); args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_file', '0001_initial', '2017-08-15T19:11:05.560053+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_file', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 5, 560053, tzinfo=<UTC>))
(0.036)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_file_filerfile'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_file_filerfile']
(0.017)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_file_filerfile'
; args=['public', 'cmsplugin_filer_file_filerfile']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_file_filerfile'
; args=['cmsplugin_filer_file_filerfile']
ALTER TABLE "cmsplugin_filer_file_filerfile" DROP CONSTRAINT "cmsplugin_filer_file_filerfil_file_id_50ca113b_fk_filer_file_id"; (params [])
(0.003) ALTER TABLE "cmsplugin_filer_file_filerfile" DROP CONSTRAINT "cmsplugin_filer_file_filerfil_file_id_50ca113b_fk_filer_file_id"; args=[]
ALTER TABLE "cmsplugin_filer_file_filerfile" ALTER COLUMN "file_id" DROP NOT NULL; (params [])
(0.001) ALTER TABLE "cmsplugin_filer_file_filerfile" ALTER COLUMN "file_id" DROP NOT NULL; args=[]
ALTER TABLE "cmsplugin_filer_file_filerfile" ADD CONSTRAINT "cmsplugin_filer_file_filerfil_file_id_50ca113b_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cmsplugin_filer_file_filerfile" ADD CONSTRAINT "cmsplugin_filer_file_filerfil_file_id_50ca113b_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_file', '0002_auto_20160112_1617', '2017-08-15T19:11:05.954513+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_file', '0002_auto_20160112_1617', datetime.datetime(2017, 8, 15, 19, 11, 5, 954513, tzinfo=<UTC>))
CREATE TABLE "cmsplugin_filer_folder_filerfolder" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "title" varchar(255) NULL, "style" varchar(50) NOT NULL, "folder_id" integer NOT NULL); (params None)
(0.056) CREATE TABLE "cmsplugin_filer_folder_filerfolder" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "title" varchar(255) NULL, "style" varchar(50) NOT NULL, "folder_id" integer NOT NULL); args=None
ALTER TABLE "cmsplugin_filer_folder_filerfolder" ADD CONSTRAINT "cmsplugin_filer_f_cmsplugin_ptr_id_7a439bc8_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cmsplugin_filer_folder_filerfolder" ADD CONSTRAINT "cmsplugin_filer_f_cmsplugin_ptr_id_7a439bc8_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_folder_filerfolder" ADD CONSTRAINT "cmsplugin_filer_folder_fi_folder_id_57adba8a_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "cmsplugin_filer_folder_filerfolder" ADD CONSTRAINT "cmsplugin_filer_folder_fi_folder_id_57adba8a_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cmsplugin_filer_folder_filerfolder_a8a44dbb" ON "cmsplugin_filer_folder_filerfolder" ("folder_id"); (params [])
(0.052) CREATE INDEX "cmsplugin_filer_folder_filerfolder_a8a44dbb" ON "cmsplugin_filer_folder_filerfolder" ("folder_id"); args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_folder', '0001_initial', '2017-08-15T19:11:06.454764+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_folder', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 6, 454764, tzinfo=<UTC>))
(0.037)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_folder_filerfolder'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_folder_filerfolder']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_folder_filerfolder'
; args=['public', 'cmsplugin_filer_folder_filerfolder']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_folder_filerfolder'
; args=['cmsplugin_filer_folder_filerfolder']
ALTER TABLE "cmsplugin_filer_folder_filerfolder" DROP CONSTRAINT "cmsplugin_filer_folder_fi_folder_id_57adba8a_fk_filer_folder_id"; (params [])
(0.004) ALTER TABLE "cmsplugin_filer_folder_filerfolder" DROP CONSTRAINT "cmsplugin_filer_folder_fi_folder_id_57adba8a_fk_filer_folder_id"; args=[]
ALTER TABLE "cmsplugin_filer_folder_filerfolder" ALTER COLUMN "folder_id" DROP NOT NULL; (params [])
(0.001) ALTER TABLE "cmsplugin_filer_folder_filerfolder" ALTER COLUMN "folder_id" DROP NOT NULL; args=[]
ALTER TABLE "cmsplugin_filer_folder_filerfolder" ADD CONSTRAINT "cmsplugin_filer_folder_fi_folder_id_57adba8a_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "cmsplugin_filer_folder_filerfolder" ADD CONSTRAINT "cmsplugin_filer_folder_fi_folder_id_57adba8a_fk_filer_folder_id" FOREIGN KEY ("folder_id") REFERENCES "filer_folder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_folder', '0002_auto_20160113_1318', '2017-08-15T19:11:06.864572+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_folder', '0002_auto_20160113_1318', datetime.datetime(2017, 8, 15, 19, 11, 6, 864572, tzinfo=<UTC>))
CREATE TABLE "cmsplugin_filer_image_filerimage" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "style" varchar(50) NOT NULL, "caption_text" varchar(255) NULL, "image_url" varchar(200) NULL, "alt_text" varchar(255) NULL, "use_original_image" boolean NOT NULL, "use_autoscale" boolean NOT NULL, "width" integer NULL CHECK ("width" >= 0), "height" integer NULL CHECK ("height" >= 0), "crop" boolean NOT NULL, "upscale" boolean NOT NULL, "alignment" varchar(10) NULL, "free_link" varchar(255) NULL, "original_link" boolean NOT NULL, "description" text NULL, "target_blank" boolean NOT NULL, "file_link_id" integer NULL, "image_id" integer NULL, "page_link_id" integer NULL); (params None)
(0.119) CREATE TABLE "cmsplugin_filer_image_filerimage" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "style" varchar(50) NOT NULL, "caption_text" varchar(255) NULL, "image_url" varchar(200) NULL, "alt_text" varchar(255) NULL, "use_original_image" boolean NOT NULL, "use_autoscale" boolean NOT NULL, "width" integer NULL CHECK ("width" >= 0), "height" integer NULL CHECK ("height" >= 0), "crop" boolean NOT NULL, "upscale" boolean NOT NULL, "alignment" varchar(10) NULL, "free_link" varchar(255) NULL, "original_link" boolean NOT NULL, "description" text NULL, "target_blank" boolean NOT NULL, "file_link_id" integer NULL, "image_id" integer NULL, "page_link_id" integer NULL); args=None
CREATE TABLE "cmsplugin_filer_image_thumbnailoption" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL, "width" integer NOT NULL, "height" integer NOT NULL, "crop" boolean NOT NULL, "upscale" boolean NOT NULL); (params None)
(0.056) CREATE TABLE "cmsplugin_filer_image_thumbnailoption" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL, "width" integer NOT NULL, "height" integer NOT NULL, "crop" boolean NOT NULL, "upscale" boolean NOT NULL); args=None
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD COLUMN "thumbnail_option_id" integer NULL; (params [])
(0.002) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD COLUMN "thumbnail_option_id" integer NULL; args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ALTER COLUMN "thumbnail_option_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "cmsplugin_filer_image_filerimage" ALTER COLUMN "thumbnail_option_id" DROP DEFAULT; args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_i_cmsplugin_ptr_id_42d4b8ae_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_i_cmsplugin_ptr_id_42d4b8ae_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_image_fi_file_link_id_40caefbe_fk_filer_file_id" FOREIGN KEY ("file_link_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_image_fi_file_link_id_40caefbe_fk_filer_file_id" FOREIGN KEY ("file_link_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_im_image_id_a134915d_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_im_image_id_a134915d_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_image_file_page_link_id_03ccb2ba_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.013) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_image_file_page_link_id_03ccb2ba_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cmsplugin_filer_image_filerimage_0fe0fc57" ON "cmsplugin_filer_image_filerimage" ("file_link_id"); (params [])
(0.047) CREATE INDEX "cmsplugin_filer_image_filerimage_0fe0fc57" ON "cmsplugin_filer_image_filerimage" ("file_link_id"); args=[]
CREATE INDEX "cmsplugin_filer_image_filerimage_f33175e6" ON "cmsplugin_filer_image_filerimage" ("image_id"); (params [])
(0.054) CREATE INDEX "cmsplugin_filer_image_filerimage_f33175e6" ON "cmsplugin_filer_image_filerimage" ("image_id"); args=[]
CREATE INDEX "cmsplugin_filer_image_filerimage_d916d256" ON "cmsplugin_filer_image_filerimage" ("page_link_id"); (params [])
(0.054) CREATE INDEX "cmsplugin_filer_image_filerimage_d916d256" ON "cmsplugin_filer_image_filerimage" ("page_link_id"); args=[]
CREATE INDEX "cmsplugin_filer_image_filerimage_6b85b7b1" ON "cmsplugin_filer_image_filerimage" ("thumbnail_option_id"); (params [])
(0.079) CREATE INDEX "cmsplugin_filer_image_filerimage_6b85b7b1" ON "cmsplugin_filer_image_filerimage" ("thumbnail_option_id"); args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "D33b02a2afb653b0641c32a07c6e12d0" FOREIGN KEY ("thumbnail_option_id") REFERENCES "cmsplugin_filer_image_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.013) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "D33b02a2afb653b0641c32a07c6e12d0" FOREIGN KEY ("thumbnail_option_id") REFERENCES "cmsplugin_filer_image_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.012)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_image', '0001_initial', '2017-08-15T19:11:08.409320+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_image', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 8, 409320, tzinfo=<UTC>))
(0.085)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_image_filerimage'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_image_filerimage']
(0.033)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_image_filerimage'
; args=['public', 'cmsplugin_filer_image_filerimage']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_image_filerimage'
; args=['cmsplugin_filer_image_filerimage']
ALTER TABLE "cmsplugin_filer_image_filerimage" DROP CONSTRAINT "cmsplugin_filer_image_fi_file_link_id_40caefbe_fk_filer_file_id"; (params [])
(0.004) ALTER TABLE "cmsplugin_filer_image_filerimage" DROP CONSTRAINT "cmsplugin_filer_image_fi_file_link_id_40caefbe_fk_filer_file_id"; args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_image_fi_file_link_id_40caefbe_fk_filer_file_id" FOREIGN KEY ("file_link_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.013) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_image_fi_file_link_id_40caefbe_fk_filer_file_id" FOREIGN KEY ("file_link_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.077)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_image_filerimage'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_image_filerimage']
(0.030)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_image_filerimage'
; args=['public', 'cmsplugin_filer_image_filerimage']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_image_filerimage'
; args=['cmsplugin_filer_image_filerimage']
ALTER TABLE "cmsplugin_filer_image_filerimage" DROP CONSTRAINT "cmsplugin_filer_im_image_id_a134915d_fk_filer_image_file_ptr_id"; (params [])
(0.004) ALTER TABLE "cmsplugin_filer_image_filerimage" DROP CONSTRAINT "cmsplugin_filer_im_image_id_a134915d_fk_filer_image_file_ptr_id"; args=[]
ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_im_image_id_a134915d_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cmsplugin_filer_image_filerimage" ADD CONSTRAINT "cmsplugin_filer_im_image_id_a134915d_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_image', '0002_auto_20160108_1708', '2017-08-15T19:11:10.054049+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_image', '0002_auto_20160108_1708', datetime.datetime(2017, 8, 15, 19, 11, 10, 54049, tzinfo=<UTC>))
CREATE TABLE "cmsplugin_filer_link_filerlinkplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "url" varchar(255) NULL, "mailto" varchar(75) NULL, "link_style" varchar(255) NOT NULL, "new_window" boolean NOT NULL, "file_id" integer NULL, "page_link_id" integer NULL); (params None)
(0.161) CREATE TABLE "cmsplugin_filer_link_filerlinkplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "name" varchar(255) NOT NULL, "url" varchar(255) NULL, "mailto" varchar(75) NULL, "link_style" varchar(255) NOT NULL, "new_window" boolean NOT NULL, "file_id" integer NULL, "page_link_id" integer NULL); args=None
ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_l_cmsplugin_ptr_id_58175d61_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_l_cmsplugin_ptr_id_58175d61_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filerlin_file_id_1e616d87_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filerlin_file_id_1e616d87_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filer_page_link_id_aff382a5_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filer_page_link_id_aff382a5_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cmsplugin_filer_link_filerlinkplugin_814552b9" ON "cmsplugin_filer_link_filerlinkplugin" ("file_id"); (params [])
(0.041) CREATE INDEX "cmsplugin_filer_link_filerlinkplugin_814552b9" ON "cmsplugin_filer_link_filerlinkplugin" ("file_id"); args=[]
CREATE INDEX "cmsplugin_filer_link_filerlinkplugin_d916d256" ON "cmsplugin_filer_link_filerlinkplugin" ("page_link_id"); (params [])
(0.038) CREATE INDEX "cmsplugin_filer_link_filerlinkplugin_d916d256" ON "cmsplugin_filer_link_filerlinkplugin" ("page_link_id"); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_link', '0001_initial', '2017-08-15T19:11:10.776011+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_link', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 10, 776011, tzinfo=<UTC>))
(0.041)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_link_filerlinkplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_link_filerlinkplugin']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_link_filerlinkplugin'
; args=['public', 'cmsplugin_filer_link_filerlinkplugin']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_link_filerlinkplugin'
; args=['cmsplugin_filer_link_filerlinkplugin']
ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" DROP CONSTRAINT "cmsplugin_filer_link_filerlin_file_id_1e616d87_fk_filer_file_id"; (params [])
(0.003) ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" DROP CONSTRAINT "cmsplugin_filer_link_filerlin_file_id_1e616d87_fk_filer_file_id"; args=[]
ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filerlin_file_id_1e616d87_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filerlin_file_id_1e616d87_fk_filer_file_id" FOREIGN KEY ("file_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.044)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_link_filerlinkplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_link_filerlinkplugin']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_link_filerlinkplugin'
; args=['public', 'cmsplugin_filer_link_filerlinkplugin']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_link_filerlinkplugin'
; args=['cmsplugin_filer_link_filerlinkplugin']
ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" DROP CONSTRAINT "cmsplugin_filer_link_filer_page_link_id_aff382a5_fk_cms_page_id"; (params [])
(0.004) ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" DROP CONSTRAINT "cmsplugin_filer_link_filer_page_link_id_aff382a5_fk_cms_page_id"; args=[]
ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filer_page_link_id_aff382a5_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "cmsplugin_filer_link_filerlinkplugin" ADD CONSTRAINT "cmsplugin_filer_link_filer_page_link_id_aff382a5_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_link', '0002_auto_20160108_1710', '2017-08-15T19:11:11.728690+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_link', '0002_auto_20160108_1710', datetime.datetime(2017, 8, 15, 19, 11, 11, 728690, tzinfo=<UTC>))
CREATE TABLE "cmsplugin_filer_video_filervideo" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "movie_url" varchar(255) NULL, "width" smallint NOT NULL CHECK ("width" >= 0), "height" smallint NOT NULL CHECK ("height" >= 0), "auto_play" boolean NOT NULL, "auto_hide" boolean NOT NULL, "fullscreen" boolean NOT NULL, "loop" boolean NOT NULL, "bgcolor" varchar(6) NOT NULL, "textcolor" varchar(6) NOT NULL, "seekbarcolor" varchar(6) NOT NULL, "seekbarbgcolor" varchar(6) NOT NULL, "loadingbarcolor" varchar(6) NOT NULL, "buttonoutcolor" varchar(6) NOT NULL, "buttonovercolor" varchar(6) NOT NULL, "buttonhighlightcolor" varchar(6) NOT NULL, "image_id" integer NULL, "movie_id" integer NULL); (params None)
(0.087) CREATE TABLE "cmsplugin_filer_video_filervideo" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "movie_url" varchar(255) NULL, "width" smallint NOT NULL CHECK ("width" >= 0), "height" smallint NOT NULL CHECK ("height" >= 0), "auto_play" boolean NOT NULL, "auto_hide" boolean NOT NULL, "fullscreen" boolean NOT NULL, "loop" boolean NOT NULL, "bgcolor" varchar(6) NOT NULL, "textcolor" varchar(6) NOT NULL, "seekbarcolor" varchar(6) NOT NULL, "seekbarbgcolor" varchar(6) NOT NULL, "loadingbarcolor" varchar(6) NOT NULL, "buttonoutcolor" varchar(6) NOT NULL, "buttonovercolor" varchar(6) NOT NULL, "buttonhighlightcolor" varchar(6) NOT NULL, "image_id" integer NULL, "movie_id" integer NULL); args=None
ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_v_cmsplugin_ptr_id_43296b80_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_v_cmsplugin_ptr_id_43296b80_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_vi_image_id_455a7ef0_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_vi_image_id_455a7ef0_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_video_filerv_movie_id_756ccd23_fk_filer_file_id" FOREIGN KEY ("movie_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_video_filerv_movie_id_756ccd23_fk_filer_file_id" FOREIGN KEY ("movie_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "cmsplugin_filer_video_filervideo_f33175e6" ON "cmsplugin_filer_video_filervideo" ("image_id"); (params [])
(0.041) CREATE INDEX "cmsplugin_filer_video_filervideo_f33175e6" ON "cmsplugin_filer_video_filervideo" ("image_id"); args=[]
CREATE INDEX "cmsplugin_filer_video_filervideo_d1b173c8" ON "cmsplugin_filer_video_filervideo" ("movie_id"); (params [])
(0.057) CREATE INDEX "cmsplugin_filer_video_filervideo_d1b173c8" ON "cmsplugin_filer_video_filervideo" ("movie_id"); args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_video', '0001_initial', '2017-08-15T19:11:12.681281+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_video', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 12, 681281, tzinfo=<UTC>))
(0.053)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_video_filervideo'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_video_filervideo']
(0.023)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_video_filervideo'
; args=['public', 'cmsplugin_filer_video_filervideo']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_video_filervideo'
; args=['cmsplugin_filer_video_filervideo']
ALTER TABLE "cmsplugin_filer_video_filervideo" DROP CONSTRAINT "cmsplugin_filer_vi_image_id_455a7ef0_fk_filer_image_file_ptr_id"; (params [])
(0.002) ALTER TABLE "cmsplugin_filer_video_filervideo" DROP CONSTRAINT "cmsplugin_filer_vi_image_id_455a7ef0_fk_filer_image_file_ptr_id"; args=[]
ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_vi_image_id_455a7ef0_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_vi_image_id_455a7ef0_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.072)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_video_filervideo'
ORDER BY kc.ordinal_position ASC
; args=['public', 'cmsplugin_filer_video_filervideo']
(0.046)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'cmsplugin_filer_video_filervideo'
; args=['public', 'cmsplugin_filer_video_filervideo']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'cmsplugin_filer_video_filervideo'
; args=['cmsplugin_filer_video_filervideo']
ALTER TABLE "cmsplugin_filer_video_filervideo" DROP CONSTRAINT "cmsplugin_filer_video_filerv_movie_id_756ccd23_fk_filer_file_id"; (params [])
(0.004) ALTER TABLE "cmsplugin_filer_video_filervideo" DROP CONSTRAINT "cmsplugin_filer_video_filerv_movie_id_756ccd23_fk_filer_file_id"; args=[]
ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_video_filerv_movie_id_756ccd23_fk_filer_file_id" FOREIGN KEY ("movie_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "cmsplugin_filer_video_filervideo" ADD CONSTRAINT "cmsplugin_filer_video_filerv_movie_id_756ccd23_fk_filer_file_id" FOREIGN KEY ("movie_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.005) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('cmsplugin_filer_video', '0002_auto_20160108_1710', '2017-08-15T19:11:14.456272+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('cmsplugin_filer_video', '0002_auto_20160108_1710', datetime.datetime(2017, 8, 15, 19, 11, 14, 456272, tzinfo=<UTC>))
CREATE TABLE "datacenterlight_betaaccess" ("id" serial NOT NULL PRIMARY KEY, "email" varchar(250) NOT NULL); (params None)
(0.082) CREATE TABLE "datacenterlight_betaaccess" ("id" serial NOT NULL PRIMARY KEY, "email" varchar(250) NOT NULL); args=None
(0.010)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('datacenterlight', '0001_initial', '2017-08-15T19:11:14.621883+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('datacenterlight', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 14, 621883, tzinfo=<UTC>))
CREATE TABLE "datacenterlight_betaaccessvm" ("id" serial NOT NULL PRIMARY KEY, "ssd" integer NOT NULL, "ram" integer NOT NULL, "cpu" integer NOT NULL, "price" double precision NOT NULL); (params None)
(0.073) CREATE TABLE "datacenterlight_betaaccessvm" ("id" serial NOT NULL PRIMARY KEY, "ssd" integer NOT NULL, "ram" integer NOT NULL, "cpu" integer NOT NULL, "price" double precision NOT NULL); args=None
(0.010)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('datacenterlight', '0002_betaaccessvm', '2017-08-15T19:11:14.786494+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('datacenterlight', '0002_betaaccessvm', datetime.datetime(2017, 8, 15, 19, 11, 14, 786494, tzinfo=<UTC>))
ALTER TABLE "datacenterlight_betaaccessvm" RENAME TO "datacenterlight_betaaccessvmtype"; (params [])
(0.004) ALTER TABLE "datacenterlight_betaaccessvm" RENAME TO "datacenterlight_betaaccessvmtype"; args=[]
(0.007)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('datacenterlight', '0003_auto_20170214_1638', '2017-08-15T19:11:14.881057+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('datacenterlight', '0003_auto_20170214_1638', datetime.datetime(2017, 8, 15, 19, 11, 14, 881057, tzinfo=<UTC>))
CREATE TABLE "datacenterlight_betaaccessvm" ("id" serial NOT NULL PRIMARY KEY, "amount" integer NOT NULL, "access_id" integer NOT NULL, "type_id" integer NOT NULL); (params None)
(0.074) CREATE TABLE "datacenterlight_betaaccessvm" ("id" serial NOT NULL PRIMARY KEY, "amount" integer NOT NULL, "access_id" integer NOT NULL, "type_id" integer NOT NULL); args=None
ALTER TABLE "datacenterlight_betaaccessvm" ADD CONSTRAINT "datacenterl_access_id_7093d85f_fk_datacenterlight_betaaccess_id" FOREIGN KEY ("access_id") REFERENCES "datacenterlight_betaaccess" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "datacenterlight_betaaccessvm" ADD CONSTRAINT "datacenterl_access_id_7093d85f_fk_datacenterlight_betaaccess_id" FOREIGN KEY ("access_id") REFERENCES "datacenterlight_betaaccess" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "datacenterlight_betaaccessvm" ADD CONSTRAINT "datacen_type_id_abeef673_fk_datacenterlight_betaaccessvmtype_id" FOREIGN KEY ("type_id") REFERENCES "datacenterlight_betaaccessvmtype" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "datacenterlight_betaaccessvm" ADD CONSTRAINT "datacen_type_id_abeef673_fk_datacenterlight_betaaccessvmtype_id" FOREIGN KEY ("type_id") REFERENCES "datacenterlight_betaaccessvmtype" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "datacenterlight_betaaccessvm_ae441468" ON "datacenterlight_betaaccessvm" ("access_id"); (params [])
(0.144) CREATE INDEX "datacenterlight_betaaccessvm_ae441468" ON "datacenterlight_betaaccessvm" ("access_id"); args=[]
CREATE INDEX "datacenterlight_betaaccessvm_94757cae" ON "datacenterlight_betaaccessvm" ("type_id"); (params [])
(0.054) CREATE INDEX "datacenterlight_betaaccessvm_94757cae" ON "datacenterlight_betaaccessvm" ("type_id"); args=[]
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('datacenterlight', '0004_betaaccessvm', '2017-08-15T19:11:15.326854+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('datacenterlight', '0004_betaaccessvm', datetime.datetime(2017, 8, 15, 19, 11, 15, 326854, tzinfo=<UTC>))
ALTER TABLE "datacenterlight_betaaccess" ADD COLUMN "name" varchar(250) DEFAULT %s NOT NULL; (params ['name'])
(0.282) ALTER TABLE "datacenterlight_betaaccess" ADD COLUMN "name" varchar(250) DEFAULT 'name' NOT NULL; args=['name']
ALTER TABLE "datacenterlight_betaaccess" ALTER COLUMN "name" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "datacenterlight_betaaccess" ALTER COLUMN "name" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('datacenterlight', '0005_betaaccess_name', '2017-08-15T19:11:15.712611+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('datacenterlight', '0005_betaaccess_name', datetime.datetime(2017, 8, 15, 19, 11, 15, 712611, tzinfo=<UTC>))
CREATE TABLE "datacenterlight_vmtemplate" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, "opennebula_vm_template_id" integer NOT NULL); (params None)
(0.076) CREATE TABLE "datacenterlight_vmtemplate" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, "opennebula_vm_template_id" integer NOT NULL); args=None
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('datacenterlight', '0006_vmtemplate', '2017-08-15T19:11:15.857207+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('datacenterlight', '0006_vmtemplate', datetime.datetime(2017, 8, 15, 19, 11, 15, 857207, tzinfo=<UTC>))
CREATE TABLE "utils_contactmessage" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "email" varchar(254) NOT NULL, "phone_number" varchar(200) NOT NULL, "message" text NOT NULL, "received_date" timestamp with time zone NOT NULL); (params None)
(0.154) CREATE TABLE "utils_contactmessage" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "email" varchar(254) NOT NULL, "phone_number" varchar(200) NOT NULL, "message" text NOT NULL, "received_date" timestamp with time zone NOT NULL); args=None
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('utils', '0001_initial', '2017-08-15T19:11:16.072851+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('utils', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 16, 72851, tzinfo=<UTC>))
CREATE TABLE "utils_billingaddress" ("id" serial NOT NULL PRIMARY KEY, "street_address" varchar(100) NOT NULL, "city" varchar(50) NOT NULL, "postal_code" varchar(50) NOT NULL, "country" varchar(2) NOT NULL); (params None)
(0.060) CREATE TABLE "utils_billingaddress" ("id" serial NOT NULL PRIMARY KEY, "street_address" varchar(100) NOT NULL, "city" varchar(50) NOT NULL, "postal_code" varchar(50) NOT NULL, "country" varchar(2) NOT NULL); args=None
(0.007)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('utils', '0002_billingaddress', '2017-08-15T19:11:16.189428+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('utils', '0002_billingaddress', datetime.datetime(2017, 8, 15, 19, 11, 16, 189428, tzinfo=<UTC>))
ALTER TABLE "django_site" ADD CONSTRAINT "django_site_domain_a2e37b91_uniq" UNIQUE ("domain"); (params [])
(0.057) ALTER TABLE "django_site" ADD CONSTRAINT "django_site_domain_a2e37b91_uniq" UNIQUE ("domain"); args=[]
CREATE INDEX "django_site_domain_a2e37b91_like" ON "django_site" ("domain" varchar_pattern_ops); (params [])
(0.044) CREATE INDEX "django_site_domain_a2e37b91_like" ON "django_site" ("domain" varchar_pattern_ops); args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('sites', '0002_alter_domain_unique', '2017-08-15T19:11:16.859375+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('sites', '0002_alter_domain_unique', datetime.datetime(2017, 8, 15, 19, 11, 16, 859375, tzinfo=<UTC>))
(0.037)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'membership_creditcards'
ORDER BY kc.ordinal_position ASC
; args=['public', 'membership_creditcards']
(0.018)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'membership_creditcards'
; args=['public', 'membership_creditcards']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'membership_creditcards'
; args=['membership_creditcards']
ALTER TABLE "membership_creditcards" DROP CONSTRAINT "membership_cred_user_id_id_f55443cf_fk_membership_customuser_id"; (params [])
(0.001) ALTER TABLE "membership_creditcards" DROP CONSTRAINT "membership_cred_user_id_id_f55443cf_fk_membership_customuser_id"; args=[]
ALTER TABLE "membership_creditcards" ADD CONSTRAINT "membership_cred_user_id_id_f55443cf_fk_membership_customuser_id" FOREIGN KEY ("user_id_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "membership_creditcards" ADD CONSTRAINT "membership_cred_user_id_id_f55443cf_fk_membership_customuser_id" FOREIGN KEY ("user_id_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.002)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('membership', '0002_auto_20160324_2336', '2017-08-15T19:11:17.325248+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('membership', '0002_auto_20160324_2336', datetime.datetime(2017, 8, 15, 19, 11, 17, 325248, tzinfo=<UTC>))
CREATE TABLE "membership_calendar" ("id" serial NOT NULL PRIMARY KEY, "datebooked" date NOT NULL); (params None)
(0.033) CREATE TABLE "membership_calendar" ("id" serial NOT NULL PRIMARY KEY, "datebooked" date NOT NULL); args=None
ALTER TABLE "membership_customuser" ADD COLUMN "site_id" integer DEFAULT %s NOT NULL; (params [1])
(0.180) ALTER TABLE "membership_customuser" ADD COLUMN "site_id" integer DEFAULT 1 NOT NULL; args=[1]
ALTER TABLE "membership_customuser" ALTER COLUMN "site_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "membership_customuser" ALTER COLUMN "site_id" DROP DEFAULT; args=[]
ALTER TABLE "membership_calendar" ADD COLUMN "user_id" integer NOT NULL; (params [])
(0.002) ALTER TABLE "membership_calendar" ADD COLUMN "user_id" integer NOT NULL; args=[]
ALTER TABLE "membership_calendar" ALTER COLUMN "user_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "membership_calendar" ALTER COLUMN "user_id" DROP DEFAULT; args=[]
CREATE INDEX "membership_customuser_9365d6e7" ON "membership_customuser" ("site_id"); (params [])
(0.094) CREATE INDEX "membership_customuser_9365d6e7" ON "membership_customuser" ("site_id"); args=[]
ALTER TABLE "membership_customuser" ADD CONSTRAINT "membership_customuser_site_id_d56011de_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.016) ALTER TABLE "membership_customuser" ADD CONSTRAINT "membership_customuser_site_id_d56011de_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "membership_calendar_e8701ad4" ON "membership_calendar" ("user_id"); (params [])
(0.043) CREATE INDEX "membership_calendar_e8701ad4" ON "membership_calendar" ("user_id"); args=[]
ALTER TABLE "membership_calendar" ADD CONSTRAINT "membership_calenda_user_id_2ab6f7c6_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "membership_calendar" ADD CONSTRAINT "membership_calenda_user_id_2ab6f7c6_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.012)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('membership', '0003_auto_20160422_1002', '2017-08-15T19:11:18.407873+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('membership', '0003_auto_20160422_1002', datetime.datetime(2017, 8, 15, 19, 11, 18, 407873, tzinfo=<UTC>))
CREATE TABLE "membership_stripecustomer" ("id" serial NOT NULL PRIMARY KEY, "stripe_id" varchar(100) NOT NULL UNIQUE, "user_id" integer NOT NULL UNIQUE); (params None)
(0.167) CREATE TABLE "membership_stripecustomer" ("id" serial NOT NULL PRIMARY KEY, "stripe_id" varchar(100) NOT NULL UNIQUE, "user_id" integer NOT NULL UNIQUE); args=None
ALTER TABLE "membership_stripecustomer" ADD CONSTRAINT "membership_stripec_user_id_490348c4_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.019) ALTER TABLE "membership_stripecustomer" ADD CONSTRAINT "membership_stripec_user_id_490348c4_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "membership_stripecustomer_stripe_id_828c5ff8_like" ON "membership_stripecustomer" ("stripe_id" varchar_pattern_ops); (params [])
(0.071) CREATE INDEX "membership_stripecustomer_stripe_id_828c5ff8_like" ON "membership_stripecustomer" ("stripe_id" varchar_pattern_ops); args=[]
(0.010)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('membership', '0004_stripecustomer', '2017-08-15T19:11:19.288307+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('membership', '0004_stripecustomer', datetime.datetime(2017, 8, 15, 19, 11, 19, 288307, tzinfo=<UTC>))
ALTER TABLE "membership_customuser" ADD COLUMN "is_admin" boolean DEFAULT %s NOT NULL; (params [False])
(0.356) ALTER TABLE "membership_customuser" ADD COLUMN "is_admin" boolean DEFAULT false NOT NULL; args=[False]
ALTER TABLE "membership_customuser" ALTER COLUMN "is_admin" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "membership_customuser" ALTER COLUMN "is_admin" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('membership', '0005_customuser_is_admin', '2017-08-15T19:11:20.188031+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('membership', '0005_customuser_is_admin', datetime.datetime(2017, 8, 15, 19, 11, 20, 188031, tzinfo=<UTC>))
CREATE TABLE "membership_customuser_groups" ("id" serial NOT NULL PRIMARY KEY, "customuser_id" integer NOT NULL, "group_id" integer NOT NULL); (params None)
(0.057) CREATE TABLE "membership_customuser_groups" ("id" serial NOT NULL PRIMARY KEY, "customuser_id" integer NOT NULL, "group_id" integer NOT NULL); args=None
ALTER TABLE "membership_customuser" ADD COLUMN "is_superuser" boolean DEFAULT %s NOT NULL; (params [False])
(0.233) ALTER TABLE "membership_customuser" ADD COLUMN "is_superuser" boolean DEFAULT false NOT NULL; args=[False]
ALTER TABLE "membership_customuser" ALTER COLUMN "is_superuser" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "membership_customuser" ALTER COLUMN "is_superuser" DROP DEFAULT; args=[]
CREATE TABLE "membership_customuser_user_permissions" ("id" serial NOT NULL PRIMARY KEY, "customuser_id" integer NOT NULL, "permission_id" integer NOT NULL); (params None)
(0.080) CREATE TABLE "membership_customuser_user_permissions" ("id" serial NOT NULL PRIMARY KEY, "customuser_id" integer NOT NULL, "permission_id" integer NOT NULL); args=None
ALTER TABLE "membership_customuser_groups" ADD CONSTRAINT "membership_c_customuser_id_8995442e_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "membership_customuser_groups" ADD CONSTRAINT "membership_c_customuser_id_8995442e_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "membership_customuser_groups" ADD CONSTRAINT "membership_customuser_groups_group_id_7faabc8c_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "membership_customuser_groups" ADD CONSTRAINT "membership_customuser_groups_group_id_7faabc8c_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "membership_customuser_groups" ADD CONSTRAINT "membership_customuser_groups_customuser_id_e079d2cd_uniq" UNIQUE ("customuser_id", "group_id"); (params [])
(0.046) ALTER TABLE "membership_customuser_groups" ADD CONSTRAINT "membership_customuser_groups_customuser_id_e079d2cd_uniq" UNIQUE ("customuser_id", "group_id"); args=[]
CREATE INDEX "membership_customuser_groups_721e74b0" ON "membership_customuser_groups" ("customuser_id"); (params [])
(0.043) CREATE INDEX "membership_customuser_groups_721e74b0" ON "membership_customuser_groups" ("customuser_id"); args=[]
CREATE INDEX "membership_customuser_groups_0e939a4f" ON "membership_customuser_groups" ("group_id"); (params [])
(0.059) CREATE INDEX "membership_customuser_groups_0e939a4f" ON "membership_customuser_groups" ("group_id"); args=[]
ALTER TABLE "membership_customuser_user_permissions" ADD CONSTRAINT "membership_c_customuser_id_0edaf53b_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "membership_customuser_user_permissions" ADD CONSTRAINT "membership_c_customuser_id_0edaf53b_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "membership_customuser_user_permissions" ADD CONSTRAINT "membership_customu_permission_id_7dde51cc_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.012) ALTER TABLE "membership_customuser_user_permissions" ADD CONSTRAINT "membership_customu_permission_id_7dde51cc_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "membership_customuser_user_permissions" ADD CONSTRAINT "membership_customuser_user_permissi_customuser_id_de7594d9_uniq" UNIQUE ("customuser_id", "permission_id"); (params [])
(0.048) ALTER TABLE "membership_customuser_user_permissions" ADD CONSTRAINT "membership_customuser_user_permissi_customuser_id_de7594d9_uniq" UNIQUE ("customuser_id", "permission_id"); args=[]
CREATE INDEX "membership_customuser_user_permissions_721e74b0" ON "membership_customuser_user_permissions" ("customuser_id"); (params [])
(0.043) CREATE INDEX "membership_customuser_user_permissions_721e74b0" ON "membership_customuser_user_permissions" ("customuser_id"); args=[]
CREATE INDEX "membership_customuser_user_permissions_8373b171" ON "membership_customuser_user_permissions" ("permission_id"); (params [])
(0.056) CREATE INDEX "membership_customuser_user_permissions_8373b171" ON "membership_customuser_user_permissions" ("permission_id"); args=[]
(0.018)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('membership', '0006_auto_20160526_0445', '2017-08-15T19:11:22.475509+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('membership', '0006_auto_20160526_0445', datetime.datetime(2017, 8, 15, 19, 11, 22, 475509, tzinfo=<UTC>))
(0.055)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'filer_file'
ORDER BY kc.ordinal_position ASC
; args=['public', 'filer_file']
(0.028)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'filer_file'
; args=['public', 'filer_file']
(0.005)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'filer_file'
; args=['filer_file']
ALTER TABLE "filer_file" DROP CONSTRAINT "filer_f_polymorphic_ctype_id_f44903c1_fk_django_content_type_id"; (params [])
(0.010) ALTER TABLE "filer_file" DROP CONSTRAINT "filer_f_polymorphic_ctype_id_f44903c1_fk_django_content_type_id"; args=[]
ALTER TABLE "filer_file" ADD CONSTRAINT "filer_f_polymorphic_ctype_id_f44903c1_fk_django_content_type_id" FOREIGN KEY ("polymorphic_ctype_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "filer_file" ADD CONSTRAINT "filer_f_polymorphic_ctype_id_f44903c1_fk_django_content_type_id" FOREIGN KEY ("polymorphic_ctype_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('filer', '0002_auto_20150606_2003', '2017-08-15T19:11:23.204501+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('filer', '0002_auto_20150606_2003', datetime.datetime(2017, 8, 15, 19, 11, 23, 204501, tzinfo=<UTC>))
CREATE TABLE "digitalglarus_dggallery" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(30) NOT NULL, "parent_id" integer NULL); (params None)
(0.060) CREATE TABLE "digitalglarus_dggallery" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(30) NOT NULL, "parent_id" integer NULL); args=None
CREATE TABLE "digitalglarus_dggalleryplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "dgGallery_id" integer NOT NULL); (params None)
(0.050) CREATE TABLE "digitalglarus_dggalleryplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "dgGallery_id" integer NOT NULL); args=None
CREATE TABLE "digitalglarus_dgpicture" ("id" serial NOT NULL PRIMARY KEY, "description" varchar(60) NOT NULL, "gallery_id" integer NOT NULL, "image_id" integer NOT NULL); (params None)
(0.062) CREATE TABLE "digitalglarus_dgpicture" ("id" serial NOT NULL PRIMARY KEY, "description" varchar(60) NOT NULL, "gallery_id" integer NOT NULL, "image_id" integer NOT NULL); args=None
CREATE TABLE "digitalglarus_dgsupportersplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); (params None)
(0.089) CREATE TABLE "digitalglarus_dgsupportersplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=None
CREATE TABLE "digitalglarus_message" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "email" varchar(254) NOT NULL, "phone_number" varchar(200) NOT NULL, "message" text NOT NULL, "received_date" timestamp with time zone NOT NULL); (params None)
(0.112) CREATE TABLE "digitalglarus_message" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "email" varchar(254) NOT NULL, "phone_number" varchar(200) NOT NULL, "message" text NOT NULL, "received_date" timestamp with time zone NOT NULL); args=None
CREATE TABLE "digitalglarus_supporter" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "description" text NULL); (params None)
(0.164) CREATE TABLE "digitalglarus_supporter" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "description" text NULL); args=None
ALTER TABLE "digitalglarus_dggallery" ADD CONSTRAINT "digitalglarus__parent_id_9ccab2ca_fk_digitalglarus_dggallery_id" FOREIGN KEY ("parent_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "digitalglarus_dggallery" ADD CONSTRAINT "digitalglarus__parent_id_9ccab2ca_fk_digitalglarus_dggallery_id" FOREIGN KEY ("parent_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_dggallery_6be37982" ON "digitalglarus_dggallery" ("parent_id"); (params [])
(0.053) CREATE INDEX "digitalglarus_dggallery_6be37982" ON "digitalglarus_dggallery" ("parent_id"); args=[]
ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglarus_dgg_cmsplugin_ptr_id_af496368_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglarus_dgg_cmsplugin_ptr_id_af496368_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglar_dgGallery_id_26aa4f21_fk_digitalglarus_dggallery_id" FOREIGN KEY ("dgGallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglar_dgGallery_id_26aa4f21_fk_digitalglarus_dggallery_id" FOREIGN KEY ("dgGallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_dggalleryplugin_6cc1e242" ON "digitalglarus_dggalleryplugin" ("dgGallery_id"); (params [])
(0.049) CREATE INDEX "digitalglarus_dggalleryplugin_6cc1e242" ON "digitalglarus_dggalleryplugin" ("dgGallery_id"); args=[]
ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_gallery_id_d661492e_fk_digitalglarus_dggallery_id" FOREIGN KEY ("gallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_gallery_id_d661492e_fk_digitalglarus_dggallery_id" FOREIGN KEY ("gallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_dgpi_image_id_4021ef41_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_dgpi_image_id_4021ef41_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_dgpicture_6d994cdb" ON "digitalglarus_dgpicture" ("gallery_id"); (params [])
(0.045) CREATE INDEX "digitalglarus_dgpicture_6d994cdb" ON "digitalglarus_dgpicture" ("gallery_id"); args=[]
CREATE INDEX "digitalglarus_dgpicture_f33175e6" ON "digitalglarus_dgpicture" ("image_id"); (params [])
(0.040) CREATE INDEX "digitalglarus_dgpicture_f33175e6" ON "digitalglarus_dgpicture" ("image_id"); args=[]
ALTER TABLE "digitalglarus_dgsupportersplugin" ADD CONSTRAINT "digitalglarus_dgs_cmsplugin_ptr_id_5029dcd8_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "digitalglarus_dgsupportersplugin" ADD CONSTRAINT "digitalglarus_dgs_cmsplugin_ptr_id_5029dcd8_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.017)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0001_initial', '2017-08-15T19:11:25.480123+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 25, 480123, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0002_auto_20160324_2321', '2017-08-15T19:11:25.497131+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0002_auto_20160324_2321', datetime.datetime(2017, 8, 15, 19, 11, 25, 497131, tzinfo=<UTC>))
(0.045)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dggallery'
ORDER BY kc.ordinal_position ASC
; args=['public', 'digitalglarus_dggallery']
(0.026)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dggallery'
; args=['public', 'digitalglarus_dggallery']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'digitalglarus_dggallery'
; args=['digitalglarus_dggallery']
ALTER TABLE "digitalglarus_dggallery" DROP CONSTRAINT "digitalglarus__parent_id_9ccab2ca_fk_digitalglarus_dggallery_id"; (params [])
(0.003) ALTER TABLE "digitalglarus_dggallery" DROP CONSTRAINT "digitalglarus__parent_id_9ccab2ca_fk_digitalglarus_dggallery_id"; args=[]
ALTER TABLE "digitalglarus_dggallery" DROP COLUMN "parent_id" CASCADE; (params [])
(0.002) ALTER TABLE "digitalglarus_dggallery" DROP COLUMN "parent_id" CASCADE; args=[]
(0.049)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dggalleryplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'digitalglarus_dggalleryplugin']
(0.021)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dggalleryplugin'
; args=['public', 'digitalglarus_dggalleryplugin']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'digitalglarus_dggalleryplugin'
; args=['digitalglarus_dggalleryplugin']
ALTER TABLE "digitalglarus_dggalleryplugin" DROP CONSTRAINT "digitalglarus_dgg_cmsplugin_ptr_id_af496368_fk_cms_cmsplugin_id"; (params [])
(0.003) ALTER TABLE "digitalglarus_dggalleryplugin" DROP CONSTRAINT "digitalglarus_dgg_cmsplugin_ptr_id_af496368_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "digitalglarus_dggalleryplugin" DROP COLUMN "cmsplugin_ptr_id" CASCADE; (params [])
(0.002) ALTER TABLE "digitalglarus_dggalleryplugin" DROP COLUMN "cmsplugin_ptr_id" CASCADE; args=[]
(0.027)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dggalleryplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'digitalglarus_dggalleryplugin']
(0.021)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dggalleryplugin'
; args=['public', 'digitalglarus_dggalleryplugin']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'digitalglarus_dggalleryplugin'
; args=['digitalglarus_dggalleryplugin']
ALTER TABLE "digitalglarus_dggalleryplugin" DROP CONSTRAINT "digitalglar_dgGallery_id_26aa4f21_fk_digitalglarus_dggallery_id"; (params [])
(0.003) ALTER TABLE "digitalglarus_dggalleryplugin" DROP CONSTRAINT "digitalglar_dgGallery_id_26aa4f21_fk_digitalglarus_dggallery_id"; args=[]
ALTER TABLE "digitalglarus_dggalleryplugin" DROP COLUMN "dgGallery_id" CASCADE; (params [])
(0.001) ALTER TABLE "digitalglarus_dggalleryplugin" DROP COLUMN "dgGallery_id" CASCADE; args=[]
(0.037)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dgpicture'
ORDER BY kc.ordinal_position ASC
; args=['public', 'digitalglarus_dgpicture']
(0.019)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dgpicture'
; args=['public', 'digitalglarus_dgpicture']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'digitalglarus_dgpicture'
; args=['digitalglarus_dgpicture']
ALTER TABLE "digitalglarus_dgpicture" DROP CONSTRAINT "digitalglarus_gallery_id_d661492e_fk_digitalglarus_dggallery_id"; (params [])
(0.002) ALTER TABLE "digitalglarus_dgpicture" DROP CONSTRAINT "digitalglarus_gallery_id_d661492e_fk_digitalglarus_dggallery_id"; args=[]
ALTER TABLE "digitalglarus_dgpicture" DROP COLUMN "gallery_id" CASCADE; (params [])
(0.002) ALTER TABLE "digitalglarus_dgpicture" DROP COLUMN "gallery_id" CASCADE; args=[]
(0.038)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dgpicture'
ORDER BY kc.ordinal_position ASC
; args=['public', 'digitalglarus_dgpicture']
(0.019)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dgpicture'
; args=['public', 'digitalglarus_dgpicture']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'digitalglarus_dgpicture'
; args=['digitalglarus_dgpicture']
ALTER TABLE "digitalglarus_dgpicture" DROP CONSTRAINT "digitalglarus_dgpi_image_id_4021ef41_fk_filer_image_file_ptr_id"; (params [])
(0.002) ALTER TABLE "digitalglarus_dgpicture" DROP CONSTRAINT "digitalglarus_dgpi_image_id_4021ef41_fk_filer_image_file_ptr_id"; args=[]
ALTER TABLE "digitalglarus_dgpicture" DROP COLUMN "image_id" CASCADE; (params [])
(0.001) ALTER TABLE "digitalglarus_dgpicture" DROP COLUMN "image_id" CASCADE; args=[]
(0.032)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dgsupportersplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'digitalglarus_dgsupportersplugin']
(0.018)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_dgsupportersplugin'
; args=['public', 'digitalglarus_dgsupportersplugin']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'digitalglarus_dgsupportersplugin'
; args=['digitalglarus_dgsupportersplugin']
ALTER TABLE "digitalglarus_dgsupportersplugin" DROP CONSTRAINT "digitalglarus_dgs_cmsplugin_ptr_id_5029dcd8_fk_cms_cmsplugin_id"; (params [])
(0.003) ALTER TABLE "digitalglarus_dgsupportersplugin" DROP CONSTRAINT "digitalglarus_dgs_cmsplugin_ptr_id_5029dcd8_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "digitalglarus_dgsupportersplugin" DROP COLUMN "cmsplugin_ptr_id" CASCADE; (params [])
(0.001) ALTER TABLE "digitalglarus_dgsupportersplugin" DROP COLUMN "cmsplugin_ptr_id" CASCADE; args=[]
DROP TABLE "digitalglarus_supporter" CASCADE; (params [])
(0.004) DROP TABLE "digitalglarus_supporter" CASCADE; args=[]
DROP TABLE "digitalglarus_dggallery" CASCADE; (params [])
(0.003) DROP TABLE "digitalglarus_dggallery" CASCADE; args=[]
DROP TABLE "digitalglarus_dggalleryplugin" CASCADE; (params [])
(0.001) DROP TABLE "digitalglarus_dggalleryplugin" CASCADE; args=[]
DROP TABLE "digitalglarus_dgpicture" CASCADE; (params [])
(0.004) DROP TABLE "digitalglarus_dgpicture" CASCADE; args=[]
DROP TABLE "digitalglarus_dgsupportersplugin" CASCADE; (params [])
(0.002) DROP TABLE "digitalglarus_dgsupportersplugin" CASCADE; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0003_auto_20160325_1659', '2017-08-15T19:11:28.418652+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0003_auto_20160325_1659', datetime.datetime(2017, 8, 15, 19, 11, 28, 418652, tzinfo=<UTC>))
CREATE TABLE "digitalglarus_dggallery" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(30) NOT NULL, "parent_id" integer NULL); (params None)
(0.075) CREATE TABLE "digitalglarus_dggallery" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(30) NOT NULL, "parent_id" integer NULL); args=None
CREATE TABLE "digitalglarus_dggalleryplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "dgGallery_id" integer NOT NULL); (params None)
(0.095) CREATE TABLE "digitalglarus_dggalleryplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "dgGallery_id" integer NOT NULL); args=None
CREATE TABLE "digitalglarus_dgpicture" ("id" serial NOT NULL PRIMARY KEY, "description" varchar(60) NOT NULL, "gallery_id" integer NOT NULL, "image_id" integer NOT NULL); (params None)
(0.115) CREATE TABLE "digitalglarus_dgpicture" ("id" serial NOT NULL PRIMARY KEY, "description" varchar(60) NOT NULL, "gallery_id" integer NOT NULL, "image_id" integer NOT NULL); args=None
CREATE TABLE "digitalglarus_dgsupportersplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); (params None)
(0.109) CREATE TABLE "digitalglarus_dgsupportersplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY); args=None
CREATE TABLE "digitalglarus_supporter" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "description" text NULL); (params None)
(0.160) CREATE TABLE "digitalglarus_supporter" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(200) NOT NULL, "description" text NULL); args=None
ALTER TABLE "digitalglarus_dggallery" ADD CONSTRAINT "digitalglarus__parent_id_9ccab2ca_fk_digitalglarus_dggallery_id" FOREIGN KEY ("parent_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "digitalglarus_dggallery" ADD CONSTRAINT "digitalglarus__parent_id_9ccab2ca_fk_digitalglarus_dggallery_id" FOREIGN KEY ("parent_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_dggallery_6be37982" ON "digitalglarus_dggallery" ("parent_id"); (params [])
(0.054) CREATE INDEX "digitalglarus_dggallery_6be37982" ON "digitalglarus_dggallery" ("parent_id"); args=[]
ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglarus_dgg_cmsplugin_ptr_id_af496368_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglarus_dgg_cmsplugin_ptr_id_af496368_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglar_dgGallery_id_26aa4f21_fk_digitalglarus_dggallery_id" FOREIGN KEY ("dgGallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_dggalleryplugin" ADD CONSTRAINT "digitalglar_dgGallery_id_26aa4f21_fk_digitalglarus_dggallery_id" FOREIGN KEY ("dgGallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_dggalleryplugin_6cc1e242" ON "digitalglarus_dggalleryplugin" ("dgGallery_id"); (params [])
(0.049) CREATE INDEX "digitalglarus_dggalleryplugin_6cc1e242" ON "digitalglarus_dggalleryplugin" ("dgGallery_id"); args=[]
ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_gallery_id_d661492e_fk_digitalglarus_dggallery_id" FOREIGN KEY ("gallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_gallery_id_d661492e_fk_digitalglarus_dggallery_id" FOREIGN KEY ("gallery_id") REFERENCES "digitalglarus_dggallery" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_dgpi_image_id_4021ef41_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "digitalglarus_dgpicture" ADD CONSTRAINT "digitalglarus_dgpi_image_id_4021ef41_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_dgpicture_6d994cdb" ON "digitalglarus_dgpicture" ("gallery_id"); (params [])
(0.052) CREATE INDEX "digitalglarus_dgpicture_6d994cdb" ON "digitalglarus_dgpicture" ("gallery_id"); args=[]
CREATE INDEX "digitalglarus_dgpicture_f33175e6" ON "digitalglarus_dgpicture" ("image_id"); (params [])
(0.051) CREATE INDEX "digitalglarus_dgpicture_f33175e6" ON "digitalglarus_dgpicture" ("image_id"); args=[]
ALTER TABLE "digitalglarus_dgsupportersplugin" ADD CONSTRAINT "digitalglarus_dgs_cmsplugin_ptr_id_5029dcd8_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_dgsupportersplugin" ADD CONSTRAINT "digitalglarus_dgs_cmsplugin_ptr_id_5029dcd8_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.016)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0004_dggallery_dggalleryplugin_dgpicture_dgsupportersplugin_supporter', '2017-08-15T19:11:31.308261+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0004_dggallery_dggalleryplugin_dgpicture_dgsupportersplugin_supporter', datetime.datetime(2017, 8, 15, 19, 11, 31, 308261, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0005_auto_20160407_0519', '2017-08-15T19:11:31.355292+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0005_auto_20160407_0519', datetime.datetime(2017, 8, 15, 19, 11, 31, 355292, tzinfo=<UTC>))
DROP TABLE "digitalglarus_message" CASCADE; (params [])
(0.004) DROP TABLE "digitalglarus_message" CASCADE; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0006_delete_message', '2017-08-15T19:11:31.405460+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0006_delete_message', datetime.datetime(2017, 8, 15, 19, 11, 31, 405460, tzinfo=<UTC>))
CREATE TABLE "digitalglarus_membership" ("id" serial NOT NULL PRIMARY KEY); (params None)
(0.051) CREATE TABLE "digitalglarus_membership" ("id" serial NOT NULL PRIMARY KEY); args=None
CREATE TABLE "digitalglarus_membershiporder" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL, "approved" boolean NOT NULL, "last4" varchar(4) NOT NULL, "cc_brand" varchar(10) NOT NULL, "stripe_charge_id" varchar(100) NULL, "membership_id" integer NOT NULL); (params None)
(0.047) CREATE TABLE "digitalglarus_membershiporder" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL, "approved" boolean NOT NULL, "last4" varchar(4) NOT NULL, "cc_brand" varchar(10) NOT NULL, "stripe_charge_id" varchar(100) NULL, "membership_id" integer NOT NULL); args=None
CREATE TABLE "digitalglarus_membershiptype" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(20) NOT NULL, "price" double precision NOT NULL); (params None)
(0.149) CREATE TABLE "digitalglarus_membershiptype" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(20) NOT NULL, "price" double precision NOT NULL); args=None
ALTER TABLE "digitalglarus_membership" ADD COLUMN "type_id" integer NOT NULL; (params [])
(0.003) ALTER TABLE "digitalglarus_membership" ADD COLUMN "type_id" integer NOT NULL; args=[]
ALTER TABLE "digitalglarus_membership" ALTER COLUMN "type_id" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "digitalglarus_membership" ALTER COLUMN "type_id" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membershiporder" ADD CONSTRAINT "digitalgl_membership_id_56aa94e0_fk_digitalglarus_membership_id" FOREIGN KEY ("membership_id") REFERENCES "digitalglarus_membership" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "digitalglarus_membershiporder" ADD CONSTRAINT "digitalgl_membership_id_56aa94e0_fk_digitalglarus_membership_id" FOREIGN KEY ("membership_id") REFERENCES "digitalglarus_membership" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_membershiporder_a40b5d20" ON "digitalglarus_membershiporder" ("membership_id"); (params [])
(0.044) CREATE INDEX "digitalglarus_membershiporder_a40b5d20" ON "digitalglarus_membershiporder" ("membership_id"); args=[]
CREATE INDEX "digitalglarus_membership_94757cae" ON "digitalglarus_membership" ("type_id"); (params [])
(0.052) CREATE INDEX "digitalglarus_membership_94757cae" ON "digitalglarus_membership" ("type_id"); args=[]
ALTER TABLE "digitalglarus_membership" ADD CONSTRAINT "digitalglar_type_id_04fbb9ad_fk_digitalglarus_membershiptype_id" FOREIGN KEY ("type_id") REFERENCES "digitalglarus_membershiptype" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "digitalglarus_membership" ADD CONSTRAINT "digitalglar_type_id_04fbb9ad_fk_digitalglarus_membershiptype_id" FOREIGN KEY ("type_id") REFERENCES "digitalglarus_membershiptype" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.015)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0007_auto_20160820_0408', '2017-08-15T19:11:31.945468+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0007_auto_20160820_0408', datetime.datetime(2017, 8, 15, 19, 11, 31, 945468, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "billing_address_id" integer DEFAULT %s NOT NULL; (params [1])
(0.092) ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "billing_address_id" integer DEFAULT 1 NOT NULL; args=[1]
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "billing_address_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "billing_address_id" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "customer_id" integer DEFAULT %s NOT NULL; (params [1])
(0.088) ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "customer_id" integer DEFAULT 1 NOT NULL; args=[1]
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "customer_id" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "customer_id" DROP DEFAULT; args=[]
CREATE INDEX "digitalglarus_membershiporder_e9192ced" ON "digitalglarus_membershiporder" ("billing_address_id"); (params [])
(0.041) CREATE INDEX "digitalglarus_membershiporder_e9192ced" ON "digitalglarus_membershiporder" ("billing_address_id"); args=[]
ALTER TABLE "digitalglarus_membershiporder" ADD CONSTRAINT "digitalg_billing_address_id_75d583dd_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_membershiporder" ADD CONSTRAINT "digitalg_billing_address_id_75d583dd_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_membershiporder_cb24373b" ON "digitalglarus_membershiporder" ("customer_id"); (params [])
(0.040) CREATE INDEX "digitalglarus_membershiporder_cb24373b" ON "digitalglarus_membershiporder" ("customer_id"); args=[]
ALTER TABLE "digitalglarus_membershiporder" ADD CONSTRAINT "digitalgla_customer_id_09b987de_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_membershiporder" ADD CONSTRAINT "digitalgla_customer_id_09b987de_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0008_auto_20160820_1959', '2017-08-15T19:11:32.758070+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0008_auto_20160820_1959', datetime.datetime(2017, 8, 15, 19, 11, 32, 758070, tzinfo=<UTC>))
CREATE TABLE "digitalglarus_booking" ("id" serial NOT NULL PRIMARY KEY, "start_date" date NOT NULL, "end_date" date NOT NULL, "price" double precision NOT NULL, "membership_id" integer NOT NULL); (params None)
(0.063) CREATE TABLE "digitalglarus_booking" ("id" serial NOT NULL PRIMARY KEY, "start_date" date NOT NULL, "end_date" date NOT NULL, "price" double precision NOT NULL, "membership_id" integer NOT NULL); args=None
CREATE TABLE "digitalglarus_bookingorder" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL, "approved" boolean NOT NULL, "last4" varchar(4) NOT NULL, "cc_brand" varchar(10) NOT NULL, "stripe_charge_id" varchar(100) NULL, "billing_address_id" integer NOT NULL, "booking_id" integer NOT NULL UNIQUE, "customer_id" integer NOT NULL); (params None)
(0.096) CREATE TABLE "digitalglarus_bookingorder" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL, "approved" boolean NOT NULL, "last4" varchar(4) NOT NULL, "cc_brand" varchar(10) NOT NULL, "stripe_charge_id" varchar(100) NULL, "billing_address_id" integer NOT NULL, "booking_id" integer NOT NULL UNIQUE, "customer_id" integer NOT NULL); args=None
CREATE TABLE "digitalglarus_bookingprices" ("id" serial NOT NULL PRIMARY KEY, "price_per_day" double precision NOT NULL); (params None)
(0.045) CREATE TABLE "digitalglarus_bookingprices" ("id" serial NOT NULL PRIMARY KEY, "price_per_day" double precision NOT NULL); args=None
ALTER TABLE "digitalglarus_booking" ADD CONSTRAINT "digitalgl_membership_id_8ace5e7d_fk_digitalglarus_membership_id" FOREIGN KEY ("membership_id") REFERENCES "digitalglarus_membership" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "digitalglarus_booking" ADD CONSTRAINT "digitalgl_membership_id_8ace5e7d_fk_digitalglarus_membership_id" FOREIGN KEY ("membership_id") REFERENCES "digitalglarus_membership" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_booking_a40b5d20" ON "digitalglarus_booking" ("membership_id"); (params [])
(0.044) CREATE INDEX "digitalglarus_booking_a40b5d20" ON "digitalglarus_booking" ("membership_id"); args=[]
ALTER TABLE "digitalglarus_bookingorder" ADD CONSTRAINT "digitalg_billing_address_id_3efdfe28_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.013) ALTER TABLE "digitalglarus_bookingorder" ADD CONSTRAINT "digitalg_billing_address_id_3efdfe28_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "digitalglarus_bookingorder" ADD CONSTRAINT "digitalglarus_b_booking_id_2375b83e_fk_digitalglarus_booking_id" FOREIGN KEY ("booking_id") REFERENCES "digitalglarus_booking" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_bookingorder" ADD CONSTRAINT "digitalglarus_b_booking_id_2375b83e_fk_digitalglarus_booking_id" FOREIGN KEY ("booking_id") REFERENCES "digitalglarus_booking" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "digitalglarus_bookingorder" ADD CONSTRAINT "digitalgla_customer_id_0a93fa22_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "digitalglarus_bookingorder" ADD CONSTRAINT "digitalgla_customer_id_0a93fa22_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_bookingorder_e9192ced" ON "digitalglarus_bookingorder" ("billing_address_id"); (params [])
(0.053) CREATE INDEX "digitalglarus_bookingorder_e9192ced" ON "digitalglarus_bookingorder" ("billing_address_id"); args=[]
CREATE INDEX "digitalglarus_bookingorder_cb24373b" ON "digitalglarus_bookingorder" ("customer_id"); (params [])
(0.045) CREATE INDEX "digitalglarus_bookingorder_cb24373b" ON "digitalglarus_bookingorder" ("customer_id"); args=[]
(0.039)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0009_booking_bookingorder_bookingprices', '2017-08-15T19:11:34.179899+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0009_booking_bookingorder_bookingprices', datetime.datetime(2017, 8, 15, 19, 11, 34, 179899, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingprices" RENAME TO "digitalglarus_bookingprice"; (params [])
(0.002) ALTER TABLE "digitalglarus_bookingprices" RENAME TO "digitalglarus_bookingprice"; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0010_auto_20160828_1745', '2017-08-15T19:11:34.292494+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0010_auto_20160828_1745', datetime.datetime(2017, 8, 15, 19, 11, 34, 292494, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingprice" ADD COLUMN "special_price_offer" double precision DEFAULT %s NOT NULL; (params [290.0])
(0.057) ALTER TABLE "digitalglarus_bookingprice" ADD COLUMN "special_price_offer" double precision DEFAULT 290.0 NOT NULL; args=[290.0]
ALTER TABLE "digitalglarus_bookingprice" ALTER COLUMN "special_price_offer" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "digitalglarus_bookingprice" ALTER COLUMN "special_price_offer" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0011_bookingprice_special_price_offer', '2017-08-15T19:11:34.446608+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0011_bookingprice_special_price_offer', datetime.datetime(2017, 8, 15, 19, 11, 34, 446608, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_booking" ADD COLUMN "free_days" integer DEFAULT %s NOT NULL; (params [0])
(0.109) ALTER TABLE "digitalglarus_booking" ADD COLUMN "free_days" integer DEFAULT 0 NOT NULL; args=[0]
ALTER TABLE "digitalglarus_booking" ALTER COLUMN "free_days" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_booking" ALTER COLUMN "free_days" DROP DEFAULT; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0012_booking_free_days', '2017-08-15T19:11:35.030139+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0012_booking_free_days', datetime.datetime(2017, 8, 15, 19, 11, 35, 30139, tzinfo=<UTC>))
(0.058)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_booking'
ORDER BY kc.ordinal_position ASC
; args=['public', 'digitalglarus_booking']
(0.031)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'digitalglarus_booking'
; args=['public', 'digitalglarus_booking']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'digitalglarus_booking'
; args=['digitalglarus_booking']
ALTER TABLE "digitalglarus_booking" DROP CONSTRAINT "digitalgl_membership_id_8ace5e7d_fk_digitalglarus_membership_id"; (params [])
(0.004) ALTER TABLE "digitalglarus_booking" DROP CONSTRAINT "digitalgl_membership_id_8ace5e7d_fk_digitalglarus_membership_id"; args=[]
ALTER TABLE "digitalglarus_booking" DROP COLUMN "membership_id" CASCADE; (params [])
(0.002) ALTER TABLE "digitalglarus_booking" DROP COLUMN "membership_id" CASCADE; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0013_remove_booking_membership', '2017-08-15T19:11:35.647670+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0013_remove_booking_membership', datetime.datetime(2017, 8, 15, 19, 11, 35, 647670, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_booking" ADD COLUMN "final_price" double precision DEFAULT %s NOT NULL; (params [250.0])
(0.080) ALTER TABLE "digitalglarus_booking" ADD COLUMN "final_price" double precision DEFAULT 250.0 NOT NULL; args=[250.0]
ALTER TABLE "digitalglarus_booking" ALTER COLUMN "final_price" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_booking" ALTER COLUMN "final_price" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0014_booking_final_price', '2017-08-15T19:11:36.180019+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0014_booking_final_price', datetime.datetime(2017, 8, 15, 19, 11, 36, 180019, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "amount" double precision DEFAULT %s NOT NULL; (params [35.0])
(0.218) ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "amount" double precision DEFAULT 35.0 NOT NULL; args=[35.0]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "amount" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "amount" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "amount" double precision DEFAULT %s NOT NULL; (params [35.0])
(0.164) ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "amount" double precision DEFAULT 35.0 NOT NULL; args=[35.0]
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "amount" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "amount" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0015_auto_20160908_0149', '2017-08-15T19:11:38.978517+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0015_auto_20160908_0149', datetime.datetime(2017, 8, 15, 19, 11, 38, 978517, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingprice" RENAME COLUMN "special_price_offer" TO "special_month_price"; (params [])
(0.002) ALTER TABLE "digitalglarus_bookingprice" RENAME COLUMN "special_price_offer" TO "special_month_price"; args=[]
ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "original_price" double precision DEFAULT %s NOT NULL; (params [20.0])
(0.198) ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "original_price" double precision DEFAULT 20.0 NOT NULL; args=[20.0]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "original_price" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "original_price" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "special_month_price" double precision DEFAULT %s NOT NULL; (params [290.0])
(0.312) ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "special_month_price" double precision DEFAULT 290.0 NOT NULL; args=[290.0]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "special_month_price" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "special_month_price" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0016_auto_20160909_0110', '2017-08-15T19:11:41.340951+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0016_auto_20160909_0110', datetime.datetime(2017, 8, 15, 19, 11, 41, 340951, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_membership" ADD COLUMN "active" boolean DEFAULT %s NOT NULL; (params [True])
(0.107) ALTER TABLE "digitalglarus_membership" ADD COLUMN "active" boolean DEFAULT true NOT NULL; args=[True]
ALTER TABLE "digitalglarus_membership" ALTER COLUMN "active" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membership" ALTER COLUMN "active" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0017_membership_active', '2017-08-15T19:11:42.125081+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0017_membership_active', datetime.datetime(2017, 8, 15, 19, 11, 42, 125081, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "membership_required_months" integer DEFAULT %s NOT NULL; (params [0])
(0.288) ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "membership_required_months" integer DEFAULT 0 NOT NULL; args=[0]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "membership_required_months_price" double precision DEFAULT %s NOT NULL; (params [0.0])
(0.243) ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "membership_required_months_price" double precision DEFAULT 0.0 NOT NULL; args=[0.0]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months_price" DROP DEFAULT; (params [])
(0.000) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months_price" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.006) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0018_auto_20160928_0424', '2017-08-15T19:11:43.682017+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0018_auto_20160928_0424', datetime.datetime(2017, 8, 15, 19, 11, 43, 682017, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months" SET DEFAULT %s; (params [0])
(0.001) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months" SET DEFAULT 0; args=[0]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months_price" SET DEFAULT %s; (params [0.0])
(0.002) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months_price" SET DEFAULT 0.0; args=[0.0]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months_price" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "membership_required_months_price" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0019_auto_20160929_0324', '2017-08-15T19:11:44.431650+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0019_auto_20160929_0324', datetime.datetime(2017, 8, 15, 19, 11, 44, 431650, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "cc_brand" SET DEFAULT %s; (params [''])
(0.002) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "cc_brand" SET DEFAULT ''; args=['']
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "cc_brand" DROP DEFAULT; (params [])
(0.000) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "cc_brand" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "last4" SET DEFAULT %s; (params [''])
(0.001) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "last4" SET DEFAULT ''; args=['']
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "last4" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "last4" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "cc_brand" SET DEFAULT %s; (params [''])
(0.003) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "cc_brand" SET DEFAULT ''; args=['']
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "cc_brand" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "cc_brand" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "last4" SET DEFAULT %s; (params [''])
(0.001) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "last4" SET DEFAULT ''; args=['']
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "last4" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "last4" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0020_auto_20161013_0253', '2017-08-15T19:11:46.393323+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0020_auto_20161013_0253', datetime.datetime(2017, 8, 15, 19, 11, 46, 393323, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_membership" ADD COLUMN "end_date" date DEFAULT %s NOT NULL; (params [datetime.date(2016, 10, 17)])
(0.201) ALTER TABLE "digitalglarus_membership" ADD COLUMN "end_date" date DEFAULT '2016-10-17'::date NOT NULL; args=[datetime.date(2016, 10, 17)]
ALTER TABLE "digitalglarus_membership" ALTER COLUMN "end_date" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membership" ALTER COLUMN "end_date" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membership" ADD COLUMN "start_date" date DEFAULT %s NOT NULL; (params [datetime.date(2016, 10, 17)])
(0.104) ALTER TABLE "digitalglarus_membership" ADD COLUMN "start_date" date DEFAULT '2016-10-17'::date NOT NULL; args=[datetime.date(2016, 10, 17)]
ALTER TABLE "digitalglarus_membership" ALTER COLUMN "start_date" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membership" ALTER COLUMN "start_date" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "end_date" date DEFAULT %s NOT NULL; (params [datetime.date(2016, 10, 17)])
(0.275) ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "end_date" date DEFAULT '2016-10-17'::date NOT NULL; args=[datetime.date(2016, 10, 17)]
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "end_date" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "end_date" DROP DEFAULT; args=[]
ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "start_date" date DEFAULT %s NOT NULL; (params [datetime.date(2016, 10, 17)])
(0.188) ALTER TABLE "digitalglarus_membershiporder" ADD COLUMN "start_date" date DEFAULT '2016-10-17'::date NOT NULL; args=[datetime.date(2016, 10, 17)]
ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "start_date" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_membershiporder" ALTER COLUMN "start_date" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0021_auto_20161017_1958', '2017-08-15T19:11:48.821149+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0021_auto_20161017_1958', datetime.datetime(2017, 8, 15, 19, 11, 48, 821149, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingorder" DROP COLUMN "membership_required_months" CASCADE; (params [])
(0.002) ALTER TABLE "digitalglarus_bookingorder" DROP COLUMN "membership_required_months" CASCADE; args=[]
ALTER TABLE "digitalglarus_bookingorder" DROP COLUMN "membership_required_months_price" CASCADE; (params [])
(0.001) ALTER TABLE "digitalglarus_bookingorder" DROP COLUMN "membership_required_months_price" CASCADE; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0022_auto_20161023_0218', '2017-08-15T19:11:49.623105+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0022_auto_20161023_0218', datetime.datetime(2017, 8, 15, 19, 11, 49, 623105, tzinfo=<UTC>))
ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "status" integer DEFAULT %s NOT NULL CHECK ("status" >= 0); (params [1])
(0.206) ALTER TABLE "digitalglarus_bookingorder" ADD COLUMN "status" integer DEFAULT 1 NOT NULL CHECK ("status" >= 0); args=[1]
ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "status" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "digitalglarus_bookingorder" ALTER COLUMN "status" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0023_bookingorder_status', '2017-08-15T19:11:50.639149+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0023_bookingorder_status', datetime.datetime(2017, 8, 15, 19, 11, 50, 639149, tzinfo=<UTC>))
CREATE TABLE "digitalglarus_bookingcancellation" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL, "required_refund" boolean NOT NULL, "refund" boolean NOT NULL, "order_id" integer NOT NULL); (params None)
(0.146) CREATE TABLE "digitalglarus_bookingcancellation" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL, "required_refund" boolean NOT NULL, "refund" boolean NOT NULL, "order_id" integer NOT NULL); args=None
ALTER TABLE "digitalglarus_bookingcancellation" ADD CONSTRAINT "digitalglaru_order_id_cbb70d6c_fk_digitalglarus_bookingorder_id" FOREIGN KEY ("order_id") REFERENCES "digitalglarus_bookingorder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "digitalglarus_bookingcancellation" ADD CONSTRAINT "digitalglaru_order_id_cbb70d6c_fk_digitalglarus_bookingorder_id" FOREIGN KEY ("order_id") REFERENCES "digitalglarus_bookingorder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "digitalglarus_bookingcancellation_69dfcb07" ON "digitalglarus_bookingcancellation" ("order_id"); (params [])
(0.069) CREATE INDEX "digitalglarus_bookingcancellation_69dfcb07" ON "digitalglarus_bookingcancellation" ("order_id"); args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('digitalglarus', '0024_bookingcancellation', '2017-08-15T19:11:51.426726+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('digitalglarus', '0024_bookingcancellation', datetime.datetime(2017, 8, 15, 19, 11, 51, 426726, tzinfo=<UTC>))
CREATE INDEX "taggit_taggeditem_content_type_id_196cc965_idx" ON "taggit_taggeditem" ("content_type_id", "object_id"); (params [])
(0.087) CREATE INDEX "taggit_taggeditem_content_type_id_196cc965_idx" ON "taggit_taggeditem" ("content_type_id", "object_id"); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('taggit', '0002_auto_20150616_2121', '2017-08-15T19:11:51.972579+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('taggit', '0002_auto_20150616_2121', datetime.datetime(2017, 8, 15, 19, 11, 51, 972579, tzinfo=<UTC>))
CREATE TABLE "filer_thumbnailoption" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL, "width" integer NOT NULL, "height" integer NOT NULL, "crop" boolean NOT NULL, "upscale" boolean NOT NULL); (params None)
(0.062) CREATE TABLE "filer_thumbnailoption" ("id" serial NOT NULL PRIMARY KEY, "name" varchar(100) NOT NULL, "width" integer NOT NULL, "height" integer NOT NULL, "crop" boolean NOT NULL, "upscale" boolean NOT NULL); args=None
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('filer', '0003_thumbnailoption', '2017-08-15T19:11:52.086838+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('filer', '0003_thumbnailoption', datetime.datetime(2017, 8, 15, 19, 11, 52, 86838, tzinfo=<UTC>))
ALTER TABLE "filer_image" ALTER COLUMN "subject_location" SET DEFAULT %s; (params [''])
(0.003) ALTER TABLE "filer_image" ALTER COLUMN "subject_location" SET DEFAULT ''; args=['']
UPDATE "filer_image" SET "subject_location" = %s WHERE "subject_location" IS NULL; (params [''])
(0.003) UPDATE "filer_image" SET "subject_location" = '' WHERE "subject_location" IS NULL; args=['']
ALTER TABLE "filer_image" ALTER COLUMN "subject_location" SET NOT NULL; (params [])
(0.001) ALTER TABLE "filer_image" ALTER COLUMN "subject_location" SET NOT NULL; args=[]
ALTER TABLE "filer_image" ALTER COLUMN "subject_location" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "filer_image" ALTER COLUMN "subject_location" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('filer', '0004_auto_20160328_1434', '2017-08-15T19:11:52.541999+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('filer', '0004_auto_20160328_1434', datetime.datetime(2017, 8, 15, 19, 11, 52, 541999, tzinfo=<UTC>))
CREATE TABLE "djangocms_blog_authorentriesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "latest_posts" integer NOT NULL); (params None)
(0.047) CREATE TABLE "djangocms_blog_authorentriesplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "latest_posts" integer NOT NULL); args=None
CREATE TABLE "djangocms_blog_authorentriesplugin_authors" ("id" serial NOT NULL PRIMARY KEY, "authorentriesplugin_id" integer NOT NULL, "customuser_id" integer NOT NULL); (params None)
(0.062) CREATE TABLE "djangocms_blog_authorentriesplugin_authors" ("id" serial NOT NULL PRIMARY KEY, "authorentriesplugin_id" integer NOT NULL, "customuser_id" integer NOT NULL); args=None
CREATE TABLE "djangocms_blog_blogcategory" ("id" serial NOT NULL PRIMARY KEY, "date_created" timestamp with time zone NOT NULL, "date_modified" timestamp with time zone NOT NULL, "parent_id" integer NULL); (params None)
(0.053) CREATE TABLE "djangocms_blog_blogcategory" ("id" serial NOT NULL PRIMARY KEY, "date_created" timestamp with time zone NOT NULL, "date_modified" timestamp with time zone NOT NULL, "parent_id" integer NULL); args=None
CREATE TABLE "djangocms_blog_blogcategory_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "name" varchar(255) NOT NULL, "slug" varchar(50) NOT NULL, "master_id" integer NULL); (params None)
(0.057) CREATE TABLE "djangocms_blog_blogcategory_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "name" varchar(255) NOT NULL, "slug" varchar(50) NOT NULL, "master_id" integer NULL); args=None
CREATE TABLE "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "latest_posts" integer NOT NULL); (params None)
(0.082) CREATE TABLE "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "latest_posts" integer NOT NULL); args=None
CREATE TABLE "djangocms_blog_latestpostsplugin_categories" ("id" serial NOT NULL PRIMARY KEY, "latestpostsplugin_id" integer NOT NULL, "blogcategory_id" integer NOT NULL); (params None)
(0.061) CREATE TABLE "djangocms_blog_latestpostsplugin_categories" ("id" serial NOT NULL PRIMARY KEY, "latestpostsplugin_id" integer NOT NULL, "blogcategory_id" integer NOT NULL); args=None
CREATE TABLE "djangocms_blog_latestpostsplugin_tags" ("id" serial NOT NULL PRIMARY KEY, "latestpostsplugin_id" integer NOT NULL, "tag_id" integer NOT NULL); (params None)
(0.055) CREATE TABLE "djangocms_blog_latestpostsplugin_tags" ("id" serial NOT NULL PRIMARY KEY, "latestpostsplugin_id" integer NOT NULL, "tag_id" integer NOT NULL); args=None
CREATE TABLE "djangocms_blog_post" ("id" serial NOT NULL PRIMARY KEY, "date_created" timestamp with time zone NOT NULL, "date_modified" timestamp with time zone NOT NULL, "date_published" timestamp with time zone NOT NULL, "date_published_end" timestamp with time zone NULL, "publish" boolean NOT NULL, "enable_comments" boolean NOT NULL, "author_id" integer NULL, "content_id" integer NULL, "main_image_id" integer NULL, "main_image_full_id" integer NULL, "main_image_thumbnail_id" integer NULL); (params None)
(0.059) CREATE TABLE "djangocms_blog_post" ("id" serial NOT NULL PRIMARY KEY, "date_created" timestamp with time zone NOT NULL, "date_modified" timestamp with time zone NOT NULL, "date_published" timestamp with time zone NOT NULL, "date_published_end" timestamp with time zone NULL, "publish" boolean NOT NULL, "enable_comments" boolean NOT NULL, "author_id" integer NULL, "content_id" integer NULL, "main_image_id" integer NULL, "main_image_full_id" integer NULL, "main_image_thumbnail_id" integer NULL); args=None
CREATE TABLE "djangocms_blog_post_categories" ("id" serial NOT NULL PRIMARY KEY, "post_id" integer NOT NULL, "blogcategory_id" integer NOT NULL); (params None)
(0.053) CREATE TABLE "djangocms_blog_post_categories" ("id" serial NOT NULL PRIMARY KEY, "post_id" integer NOT NULL, "blogcategory_id" integer NOT NULL); args=None
CREATE TABLE "djangocms_blog_post_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "title" varchar(255) NOT NULL, "slug" varchar(50) NOT NULL, "abstract" text NOT NULL, "meta_description" text NOT NULL, "meta_keywords" text NOT NULL, "meta_title" varchar(255) NOT NULL, "post_text" text NOT NULL, "master_id" integer NULL); (params None)
(0.146) CREATE TABLE "djangocms_blog_post_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "title" varchar(255) NOT NULL, "slug" varchar(50) NOT NULL, "abstract" text NOT NULL, "meta_description" text NOT NULL, "meta_keywords" text NOT NULL, "meta_title" varchar(255) NOT NULL, "post_text" text NOT NULL, "master_id" integer NULL); args=None
ALTER TABLE "djangocms_blog_post_translation" ADD CONSTRAINT "djangocms_blog_post_translation_language_code_39d00571_uniq" UNIQUE ("language_code", "slug"); (params [])
(0.048) ALTER TABLE "djangocms_blog_post_translation" ADD CONSTRAINT "djangocms_blog_post_translation_language_code_39d00571_uniq" UNIQUE ("language_code", "slug"); args=[]
ALTER TABLE "djangocms_blog_post_translation" ADD CONSTRAINT "djangocms_blog_post_translation_language_code_8d8b75b1_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.042) ALTER TABLE "djangocms_blog_post_translation" ADD CONSTRAINT "djangocms_blog_post_translation_language_code_8d8b75b1_uniq" UNIQUE ("language_code", "master_id"); args=[]
ALTER TABLE "djangocms_blog_blogcategory_translation" ADD CONSTRAINT "djangocms_blog_blogcategory_transla_language_code_01f38e6e_uniq" UNIQUE ("language_code", "slug"); (params [])
(0.072) ALTER TABLE "djangocms_blog_blogcategory_translation" ADD CONSTRAINT "djangocms_blog_blogcategory_transla_language_code_01f38e6e_uniq" UNIQUE ("language_code", "slug"); args=[]
ALTER TABLE "djangocms_blog_blogcategory_translation" ADD CONSTRAINT "djangocms_blog_blogcategory_transla_language_code_5d6c122e_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.053) ALTER TABLE "djangocms_blog_blogcategory_translation" ADD CONSTRAINT "djangocms_blog_blogcategory_transla_language_code_5d6c122e_uniq" UNIQUE ("language_code", "master_id"); args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin" ADD CONSTRAINT "djangocms_blog_au_cmsplugin_ptr_id_828883cb_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "djangocms_blog_authorentriesplugin" ADD CONSTRAINT "djangocms_blog_au_cmsplugin_ptr_id_828883cb_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "fec8d2498f19bf0d4b6df68727218314" FOREIGN KEY ("authorentriesplugin_id") REFERENCES "djangocms_blog_authorentriesplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "fec8d2498f19bf0d4b6df68727218314" FOREIGN KEY ("authorentriesplugin_id") REFERENCES "djangocms_blog_authorentriesplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "djangocms_bl_customuser_id_f74cbaf8_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.015) ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "djangocms_bl_customuser_id_f74cbaf8_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "djangocms_blog_authorentri_authorentriesplugin_id_af2d338d_uniq" UNIQUE ("authorentriesplugin_id", "customuser_id"); (params [])
(0.058) ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "djangocms_blog_authorentri_authorentriesplugin_id_af2d338d_uniq" UNIQUE ("authorentriesplugin_id", "customuser_id"); args=[]
CREATE INDEX "djangocms_blog_authorentriesplugin_authors_793c8338" ON "djangocms_blog_authorentriesplugin_authors" ("authorentriesplugin_id"); (params [])
(0.048) CREATE INDEX "djangocms_blog_authorentriesplugin_authors_793c8338" ON "djangocms_blog_authorentriesplugin_authors" ("authorentriesplugin_id"); args=[]
CREATE INDEX "djangocms_blog_authorentriesplugin_authors_721e74b0" ON "djangocms_blog_authorentriesplugin_authors" ("customuser_id"); (params [])
(0.058) CREATE INDEX "djangocms_blog_authorentriesplugin_authors_721e74b0" ON "djangocms_blog_authorentriesplugin_authors" ("customuser_id"); args=[]
ALTER TABLE "djangocms_blog_blogcategory" ADD CONSTRAINT "djangocms__parent_id_91f19b13_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("parent_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_blogcategory" ADD CONSTRAINT "djangocms__parent_id_91f19b13_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("parent_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_blogcategory_6be37982" ON "djangocms_blog_blogcategory" ("parent_id"); (params [])
(0.062) CREATE INDEX "djangocms_blog_blogcategory_6be37982" ON "djangocms_blog_blogcategory" ("parent_id"); args=[]
ALTER TABLE "djangocms_blog_blogcategory_translation" ADD CONSTRAINT "djangocms__master_id_ea2a1c61_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("master_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "djangocms_blog_blogcategory_translation" ADD CONSTRAINT "djangocms__master_id_ea2a1c61_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("master_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_blogcategory_translation_60716c2f" ON "djangocms_blog_blogcategory_translation" ("language_code"); (params [])
(0.052) CREATE INDEX "djangocms_blog_blogcategory_translation_60716c2f" ON "djangocms_blog_blogcategory_translation" ("language_code"); args=[]
CREATE INDEX "djangocms_blog_blogcategory_translation_2dbcba41" ON "djangocms_blog_blogcategory_translation" ("slug"); (params [])
(0.040) CREATE INDEX "djangocms_blog_blogcategory_translation_2dbcba41" ON "djangocms_blog_blogcategory_translation" ("slug"); args=[]
CREATE INDEX "djangocms_blog_blogcategory_translation_90349b61" ON "djangocms_blog_blogcategory_translation" ("master_id"); (params [])
(0.128) CREATE INDEX "djangocms_blog_blogcategory_translation_90349b61" ON "djangocms_blog_blogcategory_translation" ("master_id"); args=[]
CREATE INDEX "djangocms_blog_blogcategory_transla_language_code_b6d813ea_like" ON "djangocms_blog_blogcategory_translation" ("language_code" varchar_pattern_ops); (params [])
(0.053) CREATE INDEX "djangocms_blog_blogcategory_transla_language_code_b6d813ea_like" ON "djangocms_blog_blogcategory_translation" ("language_code" varchar_pattern_ops); args=[]
CREATE INDEX "djangocms_blog_blogcategory_translation_slug_5bb923d9_like" ON "djangocms_blog_blogcategory_translation" ("slug" varchar_pattern_ops); (params [])
(0.050) CREATE INDEX "djangocms_blog_blogcategory_translation_slug_5bb923d9_like" ON "djangocms_blog_blogcategory_translation" ("slug" varchar_pattern_ops); args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin" ADD CONSTRAINT "djangocms_blog_la_cmsplugin_ptr_id_e8ff125b_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_latestpostsplugin" ADD CONSTRAINT "djangocms_blog_la_cmsplugin_ptr_id_e8ff125b_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "f7d3ad4e2796791a5b4819cb79ff8448" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "f7d3ad4e2796791a5b4819cb79ff8448" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "djan_blogcategory_id_67fc1e4a_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "djan_blogcategory_id_67fc1e4a_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "djangocms_blog_latestpostspl_latestpostsplugin_id_5c7dad66_uniq" UNIQUE ("latestpostsplugin_id", "blogcategory_id"); (params [])
(0.052) ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "djangocms_blog_latestpostspl_latestpostsplugin_id_5c7dad66_uniq" UNIQUE ("latestpostsplugin_id", "blogcategory_id"); args=[]
CREATE INDEX "djangocms_blog_latestpostsplugin_categories_fda89e10" ON "djangocms_blog_latestpostsplugin_categories" ("latestpostsplugin_id"); (params [])
(0.062) CREATE INDEX "djangocms_blog_latestpostsplugin_categories_fda89e10" ON "djangocms_blog_latestpostsplugin_categories" ("latestpostsplugin_id"); args=[]
CREATE INDEX "djangocms_blog_latestpostsplugin_categories_efb54956" ON "djangocms_blog_latestpostsplugin_categories" ("blogcategory_id"); (params [])
(0.047) CREATE INDEX "djangocms_blog_latestpostsplugin_categories_efb54956" ON "djangocms_blog_latestpostsplugin_categories" ("blogcategory_id"); args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "D80f151e05bb3c21cd409106fa230179" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "D80f151e05bb3c21cd409106fa230179" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "djangocms_blog_latestpostsplug_tag_id_a120d4e0_fk_taggit_tag_id" FOREIGN KEY ("tag_id") REFERENCES "taggit_tag" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "djangocms_blog_latestpostsplug_tag_id_a120d4e0_fk_taggit_tag_id" FOREIGN KEY ("tag_id") REFERENCES "taggit_tag" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "djangocms_blog_latestpostspl_latestpostsplugin_id_eeab028b_uniq" UNIQUE ("latestpostsplugin_id", "tag_id"); (params [])
(0.056) ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "djangocms_blog_latestpostspl_latestpostsplugin_id_eeab028b_uniq" UNIQUE ("latestpostsplugin_id", "tag_id"); args=[]
CREATE INDEX "djangocms_blog_latestpostsplugin_tags_fda89e10" ON "djangocms_blog_latestpostsplugin_tags" ("latestpostsplugin_id"); (params [])
(0.049) CREATE INDEX "djangocms_blog_latestpostsplugin_tags_fda89e10" ON "djangocms_blog_latestpostsplugin_tags" ("latestpostsplugin_id"); args=[]
CREATE INDEX "djangocms_blog_latestpostsplugin_tags_76f094bc" ON "djangocms_blog_latestpostsplugin_tags" ("tag_id"); (params [])
(0.068) CREATE INDEX "djangocms_blog_latestpostsplugin_tags_76f094bc" ON "djangocms_blog_latestpostsplugin_tags" ("tag_id"); args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_p_author_id_6f01c20d_fk_membership_customuser_id" FOREIGN KEY ("author_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_p_author_id_6f01c20d_fk_membership_customuser_id" FOREIGN KEY ("author_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_post_content_id_8dbf092f_fk_cms_placeholder_id" FOREIGN KEY ("content_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_post_content_id_8dbf092f_fk_cms_placeholder_id" FOREIGN KEY ("content_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id" FOREIGN KEY ("main_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id" FOREIGN KEY ("main_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_full_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_full_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_thumbnail_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_thumbnail_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_post_4f331e2f" ON "djangocms_blog_post" ("author_id"); (params [])
(0.046) CREATE INDEX "djangocms_blog_post_4f331e2f" ON "djangocms_blog_post" ("author_id"); args=[]
CREATE INDEX "djangocms_blog_post_e14f02ad" ON "djangocms_blog_post" ("content_id"); (params [])
(0.073) CREATE INDEX "djangocms_blog_post_e14f02ad" ON "djangocms_blog_post" ("content_id"); args=[]
CREATE INDEX "djangocms_blog_post_36b62cbe" ON "djangocms_blog_post" ("main_image_id"); (params [])
(0.054) CREATE INDEX "djangocms_blog_post_36b62cbe" ON "djangocms_blog_post" ("main_image_id"); args=[]
CREATE INDEX "djangocms_blog_post_53808359" ON "djangocms_blog_post" ("main_image_full_id"); (params [])
(0.046) CREATE INDEX "djangocms_blog_post_53808359" ON "djangocms_blog_post" ("main_image_full_id"); args=[]
CREATE INDEX "djangocms_blog_post_9d0a35cc" ON "djangocms_blog_post" ("main_image_thumbnail_id"); (params [])
(0.044) CREATE INDEX "djangocms_blog_post_9d0a35cc" ON "djangocms_blog_post" ("main_image_thumbnail_id"); args=[]
ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djangocms_blog_post__post_id_9a0528c3_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.014) ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djangocms_blog_post__post_id_9a0528c3_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djan_blogcategory_id_3c5d1b9b_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djan_blogcategory_id_3c5d1b9b_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djangocms_blog_post_categories_post_id_85ffd9f3_uniq" UNIQUE ("post_id", "blogcategory_id"); (params [])
(0.053) ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djangocms_blog_post_categories_post_id_85ffd9f3_uniq" UNIQUE ("post_id", "blogcategory_id"); args=[]
CREATE INDEX "djangocms_blog_post_categories_f3aa1999" ON "djangocms_blog_post_categories" ("post_id"); (params [])
(0.037) CREATE INDEX "djangocms_blog_post_categories_f3aa1999" ON "djangocms_blog_post_categories" ("post_id"); args=[]
CREATE INDEX "djangocms_blog_post_categories_efb54956" ON "djangocms_blog_post_categories" ("blogcategory_id"); (params [])
(0.049) CREATE INDEX "djangocms_blog_post_categories_efb54956" ON "djangocms_blog_post_categories" ("blogcategory_id"); args=[]
ALTER TABLE "djangocms_blog_post_translation" ADD CONSTRAINT "djangocms_blog_pos_master_id_4d7607b6_fk_djangocms_blog_post_id" FOREIGN KEY ("master_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_post_translation" ADD CONSTRAINT "djangocms_blog_pos_master_id_4d7607b6_fk_djangocms_blog_post_id" FOREIGN KEY ("master_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_post_translation_60716c2f" ON "djangocms_blog_post_translation" ("language_code"); (params [])
(0.046) CREATE INDEX "djangocms_blog_post_translation_60716c2f" ON "djangocms_blog_post_translation" ("language_code"); args=[]
CREATE INDEX "djangocms_blog_post_translation_2dbcba41" ON "djangocms_blog_post_translation" ("slug"); (params [])
(0.126) CREATE INDEX "djangocms_blog_post_translation_2dbcba41" ON "djangocms_blog_post_translation" ("slug"); args=[]
CREATE INDEX "djangocms_blog_post_translation_90349b61" ON "djangocms_blog_post_translation" ("master_id"); (params [])
(0.042) CREATE INDEX "djangocms_blog_post_translation_90349b61" ON "djangocms_blog_post_translation" ("master_id"); args=[]
CREATE INDEX "djangocms_blog_post_translation_language_code_d6b20a83_like" ON "djangocms_blog_post_translation" ("language_code" varchar_pattern_ops); (params [])
(0.033) CREATE INDEX "djangocms_blog_post_translation_language_code_d6b20a83_like" ON "djangocms_blog_post_translation" ("language_code" varchar_pattern_ops); args=[]
CREATE INDEX "djangocms_blog_post_translation_slug_9dea8ad2_like" ON "djangocms_blog_post_translation" ("slug" varchar_pattern_ops); (params [])
(0.032) CREATE INDEX "djangocms_blog_post_translation_slug_9dea8ad2_like" ON "djangocms_blog_post_translation" ("slug" varchar_pattern_ops); args=[]
(0.061)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0001_initial', '2017-08-15T19:11:59.067122+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0001_initial', datetime.datetime(2017, 8, 15, 19, 11, 59, 67122, tzinfo=<UTC>))
CREATE TABLE "djangocms_blog_post_sites" ("id" serial NOT NULL PRIMARY KEY, "post_id" integer NOT NULL, "site_id" integer NOT NULL); (params None)
(0.052) CREATE TABLE "djangocms_blog_post_sites" ("id" serial NOT NULL PRIMARY KEY, "post_id" integer NOT NULL, "site_id" integer NOT NULL); args=None
ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_post_id_ea203167_uniq" UNIQUE ("post_id", "site_id"); (params [])
(0.041) ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_post_id_ea203167_uniq" UNIQUE ("post_id", "site_id"); args=[]
CREATE INDEX "djangocms_blog_post_sites_f3aa1999" ON "djangocms_blog_post_sites" ("post_id"); (params [])
(0.043) CREATE INDEX "djangocms_blog_post_sites_f3aa1999" ON "djangocms_blog_post_sites" ("post_id"); args=[]
CREATE INDEX "djangocms_blog_post_sites_9365d6e7" ON "djangocms_blog_post_sites" ("site_id"); (params [])
(0.040) CREATE INDEX "djangocms_blog_post_sites_9365d6e7" ON "djangocms_blog_post_sites" ("site_id"); args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0002_post_sites', '2017-08-15T19:11:59.891955+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0002_post_sites', datetime.datetime(2017, 8, 15, 19, 11, 59, 891955, tzinfo=<UTC>))
(0.091)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post_sites']
(0.030)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
; args=['public', 'djangocms_blog_post_sites']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post_sites'
; args=['djangocms_blog_post_sites']
ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id"; (params [])
(0.003) ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id"; args=[]
ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.072)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post_sites']
(0.028)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
; args=['public', 'djangocms_blog_post_sites']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post_sites'
; args=['djangocms_blog_post_sites']
ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id"; (params [])
(0.004) ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id"; args=[]
ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0003_auto_20141201_2252', '2017-08-15T19:12:01.020840+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0003_auto_20141201_2252', datetime.datetime(2017, 8, 15, 19, 12, 1, 20840, tzinfo=<UTC>))
(0.066)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id"; (params [])
(0.003) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id" FOREIGN KEY ("main_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id" FOREIGN KEY ("main_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.056)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.024)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_full_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_full_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.059)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id"; (params [])
(0.003) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_thumbnail_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_thumbnail_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0004_auto_20150108_1435', '2017-08-15T19:12:02.834654+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0004_auto_20150108_1435', datetime.datetime(2017, 8, 15, 19, 12, 2, 834654, tzinfo=<UTC>))
(0.056)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.021)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blog_post_content_id_8dbf092f_fk_cms_placeholder_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blog_post_content_id_8dbf092f_fk_cms_placeholder_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_post_content_id_8dbf092f_fk_cms_placeholder_id" FOREIGN KEY ("content_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_post_content_id_8dbf092f_fk_cms_placeholder_id" FOREIGN KEY ("content_id") REFERENCES "cms_placeholder" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" SET DEFAULT %s; (params [False])
(0.002) ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" SET DEFAULT false; args=[False]
ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" DROP DEFAULT; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0005_auto_20150212_1118', '2017-08-15T19:12:03.940846+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0005_auto_20150212_1118', datetime.datetime(2017, 8, 15, 19, 12, 3, 940846, tzinfo=<UTC>))
ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" SET DEFAULT %s; (params [''])
(0.003) ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" SET DEFAULT ''; args=['']
ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0006_auto_20150214_1907', '2017-08-15T19:12:05.053547+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0006_auto_20150214_1907', datetime.datetime(2017, 8, 15, 19, 12, 5, 53547, tzinfo=<UTC>))
(0.053)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_authorentriesplugin_authors'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_authorentriesplugin_authors']
(0.021)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_authorentriesplugin_authors'
; args=['public', 'djangocms_blog_authorentriesplugin_authors']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_authorentriesplugin_authors'
; args=['djangocms_blog_authorentriesplugin_authors']
ALTER TABLE "djangocms_blog_authorentriesplugin_authors" DROP CONSTRAINT "djangocms_bl_customuser_id_f74cbaf8_fk_membership_customuser_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_authorentriesplugin_authors" DROP CONSTRAINT "djangocms_bl_customuser_id_f74cbaf8_fk_membership_customuser_id"; args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "djangocms_bl_customuser_id_f74cbaf8_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "djangocms_bl_customuser_id_f74cbaf8_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.053)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_authorentriesplugin_authors'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_authorentriesplugin_authors']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_authorentriesplugin_authors'
; args=['public', 'djangocms_blog_authorentriesplugin_authors']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_authorentriesplugin_authors'
; args=['djangocms_blog_authorentriesplugin_authors']
ALTER TABLE "djangocms_blog_authorentriesplugin_authors" DROP CONSTRAINT "fec8d2498f19bf0d4b6df68727218314"; (params [])
(0.003) ALTER TABLE "djangocms_blog_authorentriesplugin_authors" DROP CONSTRAINT "fec8d2498f19bf0d4b6df68727218314"; args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "fec8d2498f19bf0d4b6df68727218314" FOREIGN KEY ("authorentriesplugin_id") REFERENCES "djangocms_blog_authorentriesplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_blog_authorentriesplugin_authors" ADD CONSTRAINT "fec8d2498f19bf0d4b6df68727218314" FOREIGN KEY ("authorentriesplugin_id") REFERENCES "djangocms_blog_authorentriesplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.054)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_categories'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_latestpostsplugin_categories']
(0.025)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_categories'
; args=['public', 'djangocms_blog_latestpostsplugin_categories']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_latestpostsplugin_categories'
; args=['djangocms_blog_latestpostsplugin_categories']
ALTER TABLE "djangocms_blog_latestpostsplugin_categories" DROP CONSTRAINT "djan_blogcategory_id_67fc1e4a_fk_djangocms_blog_blogcategory_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_latestpostsplugin_categories" DROP CONSTRAINT "djan_blogcategory_id_67fc1e4a_fk_djangocms_blog_blogcategory_id"; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "djan_blogcategory_id_67fc1e4a_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "djan_blogcategory_id_67fc1e4a_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.051)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_categories'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_latestpostsplugin_categories']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_categories'
; args=['public', 'djangocms_blog_latestpostsplugin_categories']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_latestpostsplugin_categories'
; args=['djangocms_blog_latestpostsplugin_categories']
ALTER TABLE "djangocms_blog_latestpostsplugin_categories" DROP CONSTRAINT "f7d3ad4e2796791a5b4819cb79ff8448"; (params [])
(0.002) ALTER TABLE "djangocms_blog_latestpostsplugin_categories" DROP CONSTRAINT "f7d3ad4e2796791a5b4819cb79ff8448"; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "f7d3ad4e2796791a5b4819cb79ff8448" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "djangocms_blog_latestpostsplugin_categories" ADD CONSTRAINT "f7d3ad4e2796791a5b4819cb79ff8448" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.101)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_tags'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_latestpostsplugin_tags']
(0.021)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_tags'
; args=['public', 'djangocms_blog_latestpostsplugin_tags']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_latestpostsplugin_tags'
; args=['djangocms_blog_latestpostsplugin_tags']
ALTER TABLE "djangocms_blog_latestpostsplugin_tags" DROP CONSTRAINT "djangocms_blog_latestpostsplug_tag_id_a120d4e0_fk_taggit_tag_id"; (params [])
(0.001) ALTER TABLE "djangocms_blog_latestpostsplugin_tags" DROP CONSTRAINT "djangocms_blog_latestpostsplug_tag_id_a120d4e0_fk_taggit_tag_id"; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "djangocms_blog_latestpostsplug_tag_id_a120d4e0_fk_taggit_tag_id" FOREIGN KEY ("tag_id") REFERENCES "taggit_tag" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "djangocms_blog_latestpostsplug_tag_id_a120d4e0_fk_taggit_tag_id" FOREIGN KEY ("tag_id") REFERENCES "taggit_tag" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.054)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_tags'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_latestpostsplugin_tags']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin_tags'
; args=['public', 'djangocms_blog_latestpostsplugin_tags']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_latestpostsplugin_tags'
; args=['djangocms_blog_latestpostsplugin_tags']
ALTER TABLE "djangocms_blog_latestpostsplugin_tags" DROP CONSTRAINT "D80f151e05bb3c21cd409106fa230179"; (params [])
(0.004) ALTER TABLE "djangocms_blog_latestpostsplugin_tags" DROP CONSTRAINT "D80f151e05bb3c21cd409106fa230179"; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "D80f151e05bb3c21cd409106fa230179" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_latestpostsplugin_tags" ADD CONSTRAINT "D80f151e05bb3c21cd409106fa230179" FOREIGN KEY ("latestpostsplugin_id") REFERENCES "djangocms_blog_latestpostsplugin" ("cmsplugin_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.059)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.023)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blog_p_author_id_6f01c20d_fk_membership_customuser_id"; (params [])
(0.004) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blog_p_author_id_6f01c20d_fk_membership_customuser_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_p_author_id_6f01c20d_fk_membership_customuser_id" FOREIGN KEY ("author_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blog_p_author_id_6f01c20d_fk_membership_customuser_id" FOREIGN KEY ("author_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" SET DEFAULT %s; (params [True])
(0.002) ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" SET DEFAULT true; args=[True]
ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "djangocms_blog_post" ALTER COLUMN "enable_comments" DROP DEFAULT; args=[]
(0.146)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.021)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id" FOREIGN KEY ("main_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocms_blo_main_image_id_885d781b_fk_filer_image_file_ptr_id" FOREIGN KEY ("main_image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.161)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.077)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.008)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id"; (params [])
(0.003) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_full_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangoc_main_image_full_id_50b37cd8_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_full_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.090)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.023)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_thumbnail_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "dj_main_image_thumbnail_id_075ca88d_fk_filer_thumbnailoption_id" FOREIGN KEY ("main_image_thumbnail_id") REFERENCES "filer_thumbnailoption" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.007)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0007_auto_20150719_0933', '2017-08-15T19:12:20.954536+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0007_auto_20150719_0933', datetime.datetime(2017, 8, 15, 19, 12, 20, 954536, tzinfo=<UTC>))
ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" SET DEFAULT %s; (params [b''])
(0.006) ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" SET DEFAULT '\x'::bytea; args=[b'']
ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0008_auto_20150814_0831', '2017-08-15T19:12:21.445459+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0008_auto_20150814_0831', datetime.datetime(2017, 8, 15, 19, 12, 21, 445459, tzinfo=<UTC>))
(0.021) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'latestpostsplugin' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('latestpostsplugin', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'latestpostsplugin' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('latestpostsplugin', 'djangocms_blog')
(0.001) SAVEPOINT "s11756_x6"; args=None
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'latestpostsplugin') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'latestpostsplugin')
(0.001) RELEASE SAVEPOINT "s11756_x6"; args=None
(0.001) SELECT "taggit_tag"."id", "taggit_tag"."name", "taggit_tag"."slug" FROM "taggit_tag"; args=()
DROP TABLE "djangocms_blog_latestpostsplugin_tags" CASCADE; (params [])
(0.008) DROP TABLE "djangocms_blog_latestpostsplugin_tags" CASCADE; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0009_latestpostsplugin_tags_new', '2017-08-15T19:12:22.869446+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0009_latestpostsplugin_tags_new', datetime.datetime(2017, 8, 15, 19, 12, 22, 869446, tzinfo=<UTC>))
CREATE TABLE "djangocms_blog_blogconfig" ("id" serial NOT NULL PRIMARY KEY, "type" varchar(100) NOT NULL, "namespace" varchar(100) NOT NULL UNIQUE, "app_data" text NOT NULL); (params None)
(0.169) CREATE TABLE "djangocms_blog_blogconfig" ("id" serial NOT NULL PRIMARY KEY, "type" varchar(100) NOT NULL, "namespace" varchar(100) NOT NULL UNIQUE, "app_data" text NOT NULL); args=None
CREATE TABLE "djangocms_blog_blogconfig_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "app_title" varchar(234) NOT NULL, "master_id" integer NULL); (params None)
(0.043) CREATE TABLE "djangocms_blog_blogconfig_translation" ("id" serial NOT NULL PRIMARY KEY, "language_code" varchar(15) NOT NULL, "app_title" varchar(234) NOT NULL, "master_id" integer NULL); args=None
CREATE TABLE "djangocms_blog_genericblogplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "app_config_id" integer NOT NULL); (params None)
(0.035) CREATE TABLE "djangocms_blog_genericblogplugin" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "app_config_id" integer NOT NULL); args=None
ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" SET DEFAULT %s; (params [''])
(0.002) ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" SET DEFAULT ''; args=['']
ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "djangocms_blog_post_translation" ALTER COLUMN "abstract" DROP DEFAULT; args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin" ADD COLUMN "app_config_id" integer NULL; (params [])
(0.001) ALTER TABLE "djangocms_blog_authorentriesplugin" ADD COLUMN "app_config_id" integer NULL; args=[]
ALTER TABLE "djangocms_blog_blogcategory" ADD COLUMN "app_config_id" integer NULL; (params [])
(0.002) ALTER TABLE "djangocms_blog_blogcategory" ADD COLUMN "app_config_id" integer NULL; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin" ADD COLUMN "app_config_id" integer NULL; (params [])
(0.002) ALTER TABLE "djangocms_blog_latestpostsplugin" ADD COLUMN "app_config_id" integer NULL; args=[]
ALTER TABLE "djangocms_blog_post" ADD COLUMN "app_config_id" integer NULL; (params [])
(0.001) ALTER TABLE "djangocms_blog_post" ADD COLUMN "app_config_id" integer NULL; args=[]
ALTER TABLE "djangocms_blog_blogconfig_translation" ADD CONSTRAINT "djangocms_blog_blogconfig_translati_language_code_b9ba0f8e_uniq" UNIQUE ("language_code", "master_id"); (params [])
(0.087) ALTER TABLE "djangocms_blog_blogconfig_translation" ADD CONSTRAINT "djangocms_blog_blogconfig_translati_language_code_b9ba0f8e_uniq" UNIQUE ("language_code", "master_id"); args=[]
(0.053)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post_sites']
(0.021)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
; args=['public', 'djangocms_blog_post_sites']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post_sites'
; args=['djangocms_blog_post_sites']
ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id"; args=[]
ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post_sites_site_id_d2f7f59d_fk_django_site_id" FOREIGN KEY ("site_id") REFERENCES "django_site" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.051)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post_sites']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_sites'
; args=['public', 'djangocms_blog_post_sites']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post_sites'
; args=['djangocms_blog_post_sites']
ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post_sites" DROP CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id"; args=[]
ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_post_sites" ADD CONSTRAINT "djangocms_blog_post__post_id_4e5295d8_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_blogconfig_namespace_dc5077dd_like" ON "djangocms_blog_blogconfig" ("namespace" varchar_pattern_ops); (params [])
(0.068) CREATE INDEX "djangocms_blog_blogconfig_namespace_dc5077dd_like" ON "djangocms_blog_blogconfig" ("namespace" varchar_pattern_ops); args=[]
ALTER TABLE "djangocms_blog_blogconfig_translation" ADD CONSTRAINT "djangocms_bl_master_id_151749d4_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("master_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "djangocms_blog_blogconfig_translation" ADD CONSTRAINT "djangocms_bl_master_id_151749d4_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("master_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_blogconfig_translation_60716c2f" ON "djangocms_blog_blogconfig_translation" ("language_code"); (params [])
(0.044) CREATE INDEX "djangocms_blog_blogconfig_translation_60716c2f" ON "djangocms_blog_blogconfig_translation" ("language_code"); args=[]
CREATE INDEX "djangocms_blog_blogconfig_translation_90349b61" ON "djangocms_blog_blogconfig_translation" ("master_id"); (params [])
(0.083) CREATE INDEX "djangocms_blog_blogconfig_translation_90349b61" ON "djangocms_blog_blogconfig_translation" ("master_id"); args=[]
CREATE INDEX "djangocms_blog_blogconfig_translati_language_code_7ea60850_like" ON "djangocms_blog_blogconfig_translation" ("language_code" varchar_pattern_ops); (params [])
(0.079) CREATE INDEX "djangocms_blog_blogconfig_translati_language_code_7ea60850_like" ON "djangocms_blog_blogconfig_translation" ("language_code" varchar_pattern_ops); args=[]
ALTER TABLE "djangocms_blog_genericblogplugin" ADD CONSTRAINT "djangocms_blog_ge_cmsplugin_ptr_id_de3802b0_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_genericblogplugin" ADD CONSTRAINT "djangocms_blog_ge_cmsplugin_ptr_id_de3802b0_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_blog_genericblogplugin" ADD CONSTRAINT "djangocm_app_config_id_738b9c8b_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_blog_genericblogplugin" ADD CONSTRAINT "djangocm_app_config_id_738b9c8b_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_genericblogplugin_40e85b1f" ON "djangocms_blog_genericblogplugin" ("app_config_id"); (params [])
(0.092) CREATE INDEX "djangocms_blog_genericblogplugin_40e85b1f" ON "djangocms_blog_genericblogplugin" ("app_config_id"); args=[]
CREATE INDEX "djangocms_blog_authorentriesplugin_40e85b1f" ON "djangocms_blog_authorentriesplugin" ("app_config_id"); (params [])
(0.064) CREATE INDEX "djangocms_blog_authorentriesplugin_40e85b1f" ON "djangocms_blog_authorentriesplugin" ("app_config_id"); args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin" ADD CONSTRAINT "djangocm_app_config_id_21fb69d9_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_blog_authorentriesplugin" ADD CONSTRAINT "djangocm_app_config_id_21fb69d9_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_blogcategory_40e85b1f" ON "djangocms_blog_blogcategory" ("app_config_id"); (params [])
(0.057) CREATE INDEX "djangocms_blog_blogcategory_40e85b1f" ON "djangocms_blog_blogcategory" ("app_config_id"); args=[]
ALTER TABLE "djangocms_blog_blogcategory" ADD CONSTRAINT "djangocm_app_config_id_979d1f2c_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_blogcategory" ADD CONSTRAINT "djangocm_app_config_id_979d1f2c_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_latestpostsplugin_40e85b1f" ON "djangocms_blog_latestpostsplugin" ("app_config_id"); (params [])
(0.047) CREATE INDEX "djangocms_blog_latestpostsplugin_40e85b1f" ON "djangocms_blog_latestpostsplugin" ("app_config_id"); args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin" ADD CONSTRAINT "djangocm_app_config_id_7b061885_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_blog_latestpostsplugin" ADD CONSTRAINT "djangocm_app_config_id_7b061885_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_blog_post_40e85b1f" ON "djangocms_blog_post" ("app_config_id"); (params [])
(0.058) CREATE INDEX "djangocms_blog_post_40e85b1f" ON "djangocms_blog_post" ("app_config_id"); args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocm_app_config_id_3f1a4082_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocm_app_config_id_3f1a4082_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0010_auto_20150923_1151', '2017-08-15T19:12:28.820798+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0010_auto_20150923_1151', datetime.datetime(2017, 8, 15, 19, 12, 28, 820798, tzinfo=<UTC>))
ALTER TABLE "djangocms_blog_blogconfig_translation" ADD COLUMN "object_name" varchar(234) DEFAULT %s NOT NULL; (params ['Article'])
(0.347) ALTER TABLE "djangocms_blog_blogconfig_translation" ADD COLUMN "object_name" varchar(234) DEFAULT 'Article' NOT NULL; args=['Article']
ALTER TABLE "djangocms_blog_blogconfig_translation" ALTER COLUMN "object_name" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "djangocms_blog_blogconfig_translation" ALTER COLUMN "object_name" DROP DEFAULT; args=[]
(0.039)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_authorentriesplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_authorentriesplugin']
(0.019)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_authorentriesplugin'
; args=['public', 'djangocms_blog_authorentriesplugin']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_authorentriesplugin'
; args=['djangocms_blog_authorentriesplugin']
ALTER TABLE "djangocms_blog_authorentriesplugin" DROP CONSTRAINT "djangocm_app_config_id_21fb69d9_fk_djangocms_blog_blogconfig_id"; (params [])
(0.003) ALTER TABLE "djangocms_blog_authorentriesplugin" DROP CONSTRAINT "djangocm_app_config_id_21fb69d9_fk_djangocms_blog_blogconfig_id"; args=[]
ALTER TABLE "djangocms_blog_authorentriesplugin" ADD CONSTRAINT "djangocm_app_config_id_21fb69d9_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "djangocms_blog_authorentriesplugin" ADD CONSTRAINT "djangocm_app_config_id_21fb69d9_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.073)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_blogcategory'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_blogcategory']
(0.033)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_blogcategory'
; args=['public', 'djangocms_blog_blogcategory']
(0.005)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_blogcategory'
; args=['djangocms_blog_blogcategory']
ALTER TABLE "djangocms_blog_blogcategory" DROP CONSTRAINT "djangocm_app_config_id_979d1f2c_fk_djangocms_blog_blogconfig_id"; (params [])
(0.003) ALTER TABLE "djangocms_blog_blogcategory" DROP CONSTRAINT "djangocm_app_config_id_979d1f2c_fk_djangocms_blog_blogconfig_id"; args=[]
ALTER TABLE "djangocms_blog_blogcategory" ADD CONSTRAINT "djangocm_app_config_id_979d1f2c_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_blog_blogcategory" ADD CONSTRAINT "djangocm_app_config_id_979d1f2c_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.073)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_genericblogplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_genericblogplugin']
(0.027)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_genericblogplugin'
; args=['public', 'djangocms_blog_genericblogplugin']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_genericblogplugin'
; args=['djangocms_blog_genericblogplugin']
ALTER TABLE "djangocms_blog_genericblogplugin" DROP CONSTRAINT "djangocm_app_config_id_738b9c8b_fk_djangocms_blog_blogconfig_id"; (params [])
(0.004) ALTER TABLE "djangocms_blog_genericblogplugin" DROP CONSTRAINT "djangocm_app_config_id_738b9c8b_fk_djangocms_blog_blogconfig_id"; args=[]
ALTER TABLE "djangocms_blog_genericblogplugin" ALTER COLUMN "app_config_id" DROP NOT NULL; (params [])
(0.002) ALTER TABLE "djangocms_blog_genericblogplugin" ALTER COLUMN "app_config_id" DROP NOT NULL; args=[]
ALTER TABLE "djangocms_blog_genericblogplugin" ADD CONSTRAINT "djangocm_app_config_id_738b9c8b_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_blog_genericblogplugin" ADD CONSTRAINT "djangocm_app_config_id_738b9c8b_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.037)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_latestpostsplugin']
(0.030)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_latestpostsplugin'
; args=['public', 'djangocms_blog_latestpostsplugin']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_latestpostsplugin'
; args=['djangocms_blog_latestpostsplugin']
ALTER TABLE "djangocms_blog_latestpostsplugin" DROP CONSTRAINT "djangocm_app_config_id_7b061885_fk_djangocms_blog_blogconfig_id"; (params [])
(0.004) ALTER TABLE "djangocms_blog_latestpostsplugin" DROP CONSTRAINT "djangocm_app_config_id_7b061885_fk_djangocms_blog_blogconfig_id"; args=[]
ALTER TABLE "djangocms_blog_latestpostsplugin" ADD CONSTRAINT "djangocm_app_config_id_7b061885_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_blog_latestpostsplugin" ADD CONSTRAINT "djangocm_app_config_id_7b061885_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.063)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post'
; args=['public', 'djangocms_blog_post']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post'
; args=['djangocms_blog_post']
ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocm_app_config_id_3f1a4082_fk_djangocms_blog_blogconfig_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post" DROP CONSTRAINT "djangocm_app_config_id_3f1a4082_fk_djangocms_blog_blogconfig_id"; args=[]
ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocm_app_config_id_3f1a4082_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.004) ALTER TABLE "djangocms_blog_post" ADD CONSTRAINT "djangocm_app_config_id_3f1a4082_fk_djangocms_blog_blogconfig_id" FOREIGN KEY ("app_config_id") REFERENCES "djangocms_blog_blogconfig" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0011_auto_20151024_1809', '2017-08-15T19:12:34.726921+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0011_auto_20151024_1809', datetime.datetime(2017, 8, 15, 19, 12, 34, 726921, tzinfo=<UTC>))
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0012_auto_20151220_1734', '2017-08-15T19:12:35.103944+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0012_auto_20151220_1734', datetime.datetime(2017, 8, 15, 19, 12, 35, 103944, tzinfo=<UTC>))
(0.054)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_categories'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post_categories']
(0.018)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_categories'
; args=['public', 'djangocms_blog_post_categories']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post_categories'
; args=['djangocms_blog_post_categories']
ALTER TABLE "djangocms_blog_post_categories" DROP CONSTRAINT "djan_blogcategory_id_3c5d1b9b_fk_djangocms_blog_blogcategory_id"; (params [])
(0.003) ALTER TABLE "djangocms_blog_post_categories" DROP CONSTRAINT "djan_blogcategory_id_3c5d1b9b_fk_djangocms_blog_blogcategory_id"; args=[]
ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djan_blogcategory_id_3c5d1b9b_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djan_blogcategory_id_3c5d1b9b_fk_djangocms_blog_blogcategory_id" FOREIGN KEY ("blogcategory_id") REFERENCES "djangocms_blog_blogcategory" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.049)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_categories'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_blog_post_categories']
(0.019)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_blog_post_categories'
; args=['public', 'djangocms_blog_post_categories']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_blog_post_categories'
; args=['djangocms_blog_post_categories']
ALTER TABLE "djangocms_blog_post_categories" DROP CONSTRAINT "djangocms_blog_post__post_id_9a0528c3_fk_djangocms_blog_post_id"; (params [])
(0.002) ALTER TABLE "djangocms_blog_post_categories" DROP CONSTRAINT "djangocms_blog_post__post_id_9a0528c3_fk_djangocms_blog_post_id"; args=[]
ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djangocms_blog_post__post_id_9a0528c3_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_blog_post_categories" ADD CONSTRAINT "djangocms_blog_post__post_id_9a0528c3_fk_djangocms_blog_post_id" FOREIGN KEY ("post_id") REFERENCES "djangocms_blog_post" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0013_auto_20160201_2235', '2017-08-15T19:12:35.796648+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0013_auto_20160201_2235', datetime.datetime(2017, 8, 15, 19, 12, 35, 796648, tzinfo=<UTC>))
(0.005) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."application_urls" = 'BlogApp') ORDER BY "cms_page"."path" ASC; args=(True, 'BlogApp')
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_blog', '0014_auto_20160215_1331', '2017-08-15T19:12:35.855106+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_blog', '0014_auto_20160215_1331', datetime.datetime(2017, 8, 15, 19, 12, 35, 855106, tzinfo=<UTC>))
CREATE TABLE "djangocms_file_file" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "file" varchar(100) NOT NULL, "title" varchar(255) NULL, "target" varchar(100) NOT NULL); (params None)
(0.100) CREATE TABLE "djangocms_file_file" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "file" varchar(100) NOT NULL, "title" varchar(255) NULL, "target" varchar(100) NOT NULL); args=None
ALTER TABLE "djangocms_file_file" ADD CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "djangocms_file_file" ADD CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_file', '0001_initial', '2017-08-15T19:12:36.709286+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_file', '0001_initial', datetime.datetime(2017, 8, 15, 19, 12, 36, 709286, tzinfo=<UTC>))
ALTER TABLE "djangocms_file_file" ADD COLUMN "tooltip" varchar(255) DEFAULT %s NOT NULL; (params [''])
(0.141) ALTER TABLE "djangocms_file_file" ADD COLUMN "tooltip" varchar(255) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "djangocms_file_file" ALTER COLUMN "tooltip" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "djangocms_file_file" ALTER COLUMN "tooltip" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_file', '0002_auto_20151202_1551', '2017-08-15T19:12:38.391014+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_file', '0002_auto_20151202_1551', datetime.datetime(2017, 8, 15, 19, 12, 38, 391014, tzinfo=<UTC>))
(0.048)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_file_file'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_file_file']
(0.034)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_file_file'
; args=['public', 'djangocms_file_file']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_file_file'
; args=['djangocms_file_file']
ALTER TABLE "djangocms_file_file" DROP CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id"; (params [])
(0.004) ALTER TABLE "djangocms_file_file" DROP CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "djangocms_file_file" ADD CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "djangocms_file_file" ADD CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_file', '0003_remove_related_name_for_cmsplugin_ptr', '2017-08-15T19:12:39.051569+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_file', '0003_remove_related_name_for_cmsplugin_ptr', datetime.datetime(2017, 8, 15, 19, 12, 39, 51569, tzinfo=<UTC>))
(0.034)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_file_file'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_file_file']
(0.023)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_file_file'
; args=['public', 'djangocms_file_file']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_file_file'
; args=['djangocms_file_file']
ALTER TABLE "djangocms_file_file" DROP CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id"; (params [])
(0.003) ALTER TABLE "djangocms_file_file" DROP CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "djangocms_file_file" ADD CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_file_file" ADD CONSTRAINT "djangocms_file_fi_cmsplugin_ptr_id_428f5041_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_file', '0004_set_related_name_for_cmsplugin_ptr', '2017-08-15T19:12:39.810247+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_file', '0004_set_related_name_for_cmsplugin_ptr', datetime.datetime(2017, 8, 15, 19, 12, 39, 810247, tzinfo=<UTC>))
CREATE TABLE "djangocms_page_meta_pagemeta" ("id" serial NOT NULL PRIMARY KEY, "og_type" varchar(255) NOT NULL, "og_author_url" varchar(255) NOT NULL, "og_author_fbid" varchar(16) NOT NULL, "og_publisher" varchar(255) NOT NULL, "og_app_id" varchar(255) NOT NULL, "twitter_author" varchar(255) NOT NULL, "twitter_site" varchar(255) NOT NULL, "twitter_type" varchar(255) NOT NULL, "gplus_author" varchar(255) NOT NULL, "gplus_type" varchar(255) NOT NULL, "extended_object_id" integer NOT NULL UNIQUE, "image_id" integer NULL, "og_author_id" integer NULL, "public_extension_id" integer NULL UNIQUE); (params None)
(0.230) CREATE TABLE "djangocms_page_meta_pagemeta" ("id" serial NOT NULL PRIMARY KEY, "og_type" varchar(255) NOT NULL, "og_author_url" varchar(255) NOT NULL, "og_author_fbid" varchar(16) NOT NULL, "og_publisher" varchar(255) NOT NULL, "og_app_id" varchar(255) NOT NULL, "twitter_author" varchar(255) NOT NULL, "twitter_site" varchar(255) NOT NULL, "twitter_type" varchar(255) NOT NULL, "gplus_author" varchar(255) NOT NULL, "gplus_type" varchar(255) NOT NULL, "extended_object_id" integer NOT NULL UNIQUE, "image_id" integer NULL, "og_author_id" integer NULL, "public_extension_id" integer NULL UNIQUE); args=None
CREATE TABLE "djangocms_page_meta_titlemeta" ("id" serial NOT NULL PRIMARY KEY, "keywords" varchar(400) NOT NULL, "description" varchar(400) NOT NULL, "og_description" varchar(400) NOT NULL, "twitter_description" varchar(140) NOT NULL, "gplus_description" varchar(400) NOT NULL, "extended_object_id" integer NOT NULL UNIQUE, "image_id" integer NULL, "public_extension_id" integer NULL UNIQUE); (params None)
(0.174) CREATE TABLE "djangocms_page_meta_titlemeta" ("id" serial NOT NULL PRIMARY KEY, "keywords" varchar(400) NOT NULL, "description" varchar(400) NOT NULL, "og_description" varchar(400) NOT NULL, "twitter_description" varchar(140) NOT NULL, "gplus_description" varchar(400) NOT NULL, "extended_object_id" integer NOT NULL UNIQUE, "image_id" integer NULL, "public_extension_id" integer NULL UNIQUE); args=None
ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "djangocms_page_meta__extended_object_id_3e42f99f_fk_cms_page_id" FOREIGN KEY ("extended_object_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "djangocms_page_meta__extended_object_id_3e42f99f_fk_cms_page_id" FOREIGN KEY ("extended_object_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "djangocms_page_meta_pagemeta_image_id_ea4717af_fk_filer_file_id" FOREIGN KEY ("image_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "djangocms_page_meta_pagemeta_image_id_ea4717af_fk_filer_file_id" FOREIGN KEY ("image_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "djangocms_pag_og_author_id_b3c1587d_fk_membership_customuser_id" FOREIGN KEY ("og_author_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "djangocms_pag_og_author_id_b3c1587d_fk_membership_customuser_id" FOREIGN KEY ("og_author_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "ab8489de252b8b141e49a49c513eed89" FOREIGN KEY ("public_extension_id") REFERENCES "djangocms_page_meta_pagemeta" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_page_meta_pagemeta" ADD CONSTRAINT "ab8489de252b8b141e49a49c513eed89" FOREIGN KEY ("public_extension_id") REFERENCES "djangocms_page_meta_pagemeta" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_page_meta_pagemeta_f33175e6" ON "djangocms_page_meta_pagemeta" ("image_id"); (params [])
(0.045) CREATE INDEX "djangocms_page_meta_pagemeta_f33175e6" ON "djangocms_page_meta_pagemeta" ("image_id"); args=[]
CREATE INDEX "djangocms_page_meta_pagemeta_f149115b" ON "djangocms_page_meta_pagemeta" ("og_author_id"); (params [])
(0.041) CREATE INDEX "djangocms_page_meta_pagemeta_f149115b" ON "djangocms_page_meta_pagemeta" ("og_author_id"); args=[]
ALTER TABLE "djangocms_page_meta_titlemeta" ADD CONSTRAINT "djangocms_page_meta_extended_object_id_8d83fca1_fk_cms_title_id" FOREIGN KEY ("extended_object_id") REFERENCES "cms_title" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.022) ALTER TABLE "djangocms_page_meta_titlemeta" ADD CONSTRAINT "djangocms_page_meta_extended_object_id_8d83fca1_fk_cms_title_id" FOREIGN KEY ("extended_object_id") REFERENCES "cms_title" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_page_meta_titlemeta" ADD CONSTRAINT "djangocms_page_meta_titlemet_image_id_df083a43_fk_filer_file_id" FOREIGN KEY ("image_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_page_meta_titlemeta" ADD CONSTRAINT "djangocms_page_meta_titlemet_image_id_df083a43_fk_filer_file_id" FOREIGN KEY ("image_id") REFERENCES "filer_file" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_page_meta_titlemeta" ADD CONSTRAINT "D2d8ebbe3eb478fd3740ac099735b0c7" FOREIGN KEY ("public_extension_id") REFERENCES "djangocms_page_meta_titlemeta" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "djangocms_page_meta_titlemeta" ADD CONSTRAINT "D2d8ebbe3eb478fd3740ac099735b0c7" FOREIGN KEY ("public_extension_id") REFERENCES "djangocms_page_meta_titlemeta" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_page_meta_titlemeta_f33175e6" ON "djangocms_page_meta_titlemeta" ("image_id"); (params [])
(0.053) CREATE INDEX "djangocms_page_meta_titlemeta_f33175e6" ON "djangocms_page_meta_titlemeta" ("image_id"); args=[]
(0.012)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_page_meta', '0001_initial', '2017-08-15T19:12:41.464052+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_page_meta', '0001_initial', datetime.datetime(2017, 8, 15, 19, 12, 41, 464052, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_page_meta', '0002_auto_20150807_0936', '2017-08-15T19:12:42.250868+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_page_meta', '0002_auto_20150807_0936', datetime.datetime(2017, 8, 15, 19, 12, 42, 250868, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_page_meta', '0003_auto_20151220_1734', '2017-08-15T19:12:44.108495+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_page_meta', '0003_auto_20151220_1734', datetime.datetime(2017, 8, 15, 19, 12, 44, 108495, tzinfo=<UTC>))
CREATE TABLE "djangocms_picture_picture" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "image" varchar(100) NOT NULL, "url" varchar(255) NULL, "alt" varchar(255) NULL, "longdesc" varchar(255) NULL, "float" varchar(10) NULL, "page_link_id" integer NULL); (params None)
(0.099) CREATE TABLE "djangocms_picture_picture" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "image" varchar(100) NOT NULL, "url" varchar(255) NULL, "alt" varchar(255) NULL, "longdesc" varchar(255) NULL, "float" varchar(10) NULL, "page_link_id" integer NULL); args=None
ALTER TABLE "djangocms_picture_picture" ADD CONSTRAINT "djangocms_picture_cmsplugin_ptr_id_0e797309_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_picture_picture" ADD CONSTRAINT "djangocms_picture_cmsplugin_ptr_id_0e797309_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "djangocms_picture_picture" ADD CONSTRAINT "djangocms_picture_picture_page_link_id_d5c782e0_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_picture_picture" ADD CONSTRAINT "djangocms_picture_picture_page_link_id_d5c782e0_fk_cms_page_id" FOREIGN KEY ("page_link_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "djangocms_picture_picture_d916d256" ON "djangocms_picture_picture" ("page_link_id"); (params [])
(0.033) CREATE INDEX "djangocms_picture_picture_d916d256" ON "djangocms_picture_picture" ("page_link_id"); args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_picture', '0001_initial', '2017-08-15T19:12:44.831416+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_picture', '0001_initial', datetime.datetime(2017, 8, 15, 19, 12, 44, 831416, tzinfo=<UTC>))
ALTER TABLE "djangocms_picture_picture" ADD COLUMN "height" integer NULL; (params [])
(0.002) ALTER TABLE "djangocms_picture_picture" ADD COLUMN "height" integer NULL; args=[]
ALTER TABLE "djangocms_picture_picture" ALTER COLUMN "height" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "djangocms_picture_picture" ALTER COLUMN "height" DROP DEFAULT; args=[]
ALTER TABLE "djangocms_picture_picture" ADD COLUMN "width" integer NULL; (params [])
(0.001) ALTER TABLE "djangocms_picture_picture" ADD COLUMN "width" integer NULL; args=[]
ALTER TABLE "djangocms_picture_picture" ALTER COLUMN "width" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "djangocms_picture_picture" ALTER COLUMN "width" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_picture', '0002_auto_20151018_1927', '2017-08-15T19:12:46.471672+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_picture', '0002_auto_20151018_1927', datetime.datetime(2017, 8, 15, 19, 12, 46, 471672, tzinfo=<UTC>))
(0.063)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_picture_picture'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_picture_picture']
(0.041)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_picture_picture'
; args=['public', 'djangocms_picture_picture']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_picture_picture'
; args=['djangocms_picture_picture']
ALTER TABLE "djangocms_picture_picture" DROP CONSTRAINT "djangocms_picture_cmsplugin_ptr_id_0e797309_fk_cms_cmsplugin_id"; (params [])
(0.004) ALTER TABLE "djangocms_picture_picture" DROP CONSTRAINT "djangocms_picture_cmsplugin_ptr_id_0e797309_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "djangocms_picture_picture" ADD CONSTRAINT "djangocms_picture_cmsplugin_ptr_id_0e797309_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "djangocms_picture_picture" ADD CONSTRAINT "djangocms_picture_cmsplugin_ptr_id_0e797309_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_picture', '0003_set_related_name_for_cmsplugin_ptr', '2017-08-15T19:12:47.621416+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_picture', '0003_set_related_name_for_cmsplugin_ptr', datetime.datetime(2017, 8, 15, 19, 12, 47, 621416, tzinfo=<UTC>))
CREATE TABLE "djangocms_text_ckeditor_text" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "body" text NOT NULL); (params None)
(0.144) CREATE TABLE "djangocms_text_ckeditor_text" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "body" text NOT NULL); args=None
ALTER TABLE "djangocms_text_ckeditor_text" ADD CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "djangocms_text_ckeditor_text" ADD CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_text_ckeditor', '0001_initial', '2017-08-15T19:12:48.319969+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_text_ckeditor', '0001_initial', datetime.datetime(2017, 8, 15, 19, 12, 48, 319969, tzinfo=<UTC>))
(0.032)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_text_ckeditor_text'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_text_ckeditor_text']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_text_ckeditor_text'
; args=['public', 'djangocms_text_ckeditor_text']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_text_ckeditor_text'
; args=['djangocms_text_ckeditor_text']
ALTER TABLE "djangocms_text_ckeditor_text" DROP CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id"; (params [])
(0.003) ALTER TABLE "djangocms_text_ckeditor_text" DROP CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "djangocms_text_ckeditor_text" ADD CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_text_ckeditor_text" ADD CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_text_ckeditor', '0002_remove_related_name_for_cmsplugin_ptr', '2017-08-15T19:12:48.989457+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_text_ckeditor', '0002_remove_related_name_for_cmsplugin_ptr', datetime.datetime(2017, 8, 15, 19, 12, 48, 989457, tzinfo=<UTC>))
(0.033)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_text_ckeditor_text'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_text_ckeditor_text']
(0.020)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_text_ckeditor_text'
; args=['public', 'djangocms_text_ckeditor_text']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_text_ckeditor_text'
; args=['djangocms_text_ckeditor_text']
ALTER TABLE "djangocms_text_ckeditor_text" DROP CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id"; (params [])
(0.003) ALTER TABLE "djangocms_text_ckeditor_text" DROP CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "djangocms_text_ckeditor_text" ADD CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_text_ckeditor_text" ADD CONSTRAINT "djangocms_text_ck_cmsplugin_ptr_id_946882c1_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_text_ckeditor', '0003_set_related_name_for_cmsplugin_ptr', '2017-08-15T19:12:54.213754+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_text_ckeditor', '0003_set_related_name_for_cmsplugin_ptr', datetime.datetime(2017, 8, 15, 19, 12, 54, 213754, tzinfo=<UTC>))
CREATE TABLE "djangocms_video_video" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "movie" varchar(100) NULL, "movie_url" varchar(255) NULL, "image" varchar(100) NULL, "width" smallint NOT NULL CHECK ("width" >= 0), "height" smallint NOT NULL CHECK ("height" >= 0), "auto_play" boolean NOT NULL, "auto_hide" boolean NOT NULL, "fullscreen" boolean NOT NULL, "loop" boolean NOT NULL, "bgcolor" varchar(6) NOT NULL, "textcolor" varchar(6) NOT NULL, "seekbarcolor" varchar(6) NOT NULL, "seekbarbgcolor" varchar(6) NOT NULL, "loadingbarcolor" varchar(6) NOT NULL, "buttonoutcolor" varchar(6) NOT NULL, "buttonovercolor" varchar(6) NOT NULL, "buttonhighlightcolor" varchar(6) NOT NULL); (params None)
(0.133) CREATE TABLE "djangocms_video_video" ("cmsplugin_ptr_id" integer NOT NULL PRIMARY KEY, "movie" varchar(100) NULL, "movie_url" varchar(255) NULL, "image" varchar(100) NULL, "width" smallint NOT NULL CHECK ("width" >= 0), "height" smallint NOT NULL CHECK ("height" >= 0), "auto_play" boolean NOT NULL, "auto_hide" boolean NOT NULL, "fullscreen" boolean NOT NULL, "loop" boolean NOT NULL, "bgcolor" varchar(6) NOT NULL, "textcolor" varchar(6) NOT NULL, "seekbarcolor" varchar(6) NOT NULL, "seekbarbgcolor" varchar(6) NOT NULL, "loadingbarcolor" varchar(6) NOT NULL, "buttonoutcolor" varchar(6) NOT NULL, "buttonovercolor" varchar(6) NOT NULL, "buttonhighlightcolor" varchar(6) NOT NULL); args=None
ALTER TABLE "djangocms_video_video" ADD CONSTRAINT "djangocms_video_v_cmsplugin_ptr_id_cc81a95d_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "djangocms_video_video" ADD CONSTRAINT "djangocms_video_v_cmsplugin_ptr_id_cc81a95d_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_video', '0001_initial', '2017-08-15T19:12:54.909486+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_video', '0001_initial', datetime.datetime(2017, 8, 15, 19, 12, 54, 909486, tzinfo=<UTC>))
(0.035)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_video_video'
ORDER BY kc.ordinal_position ASC
; args=['public', 'djangocms_video_video']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'djangocms_video_video'
; args=['public', 'djangocms_video_video']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'djangocms_video_video'
; args=['djangocms_video_video']
ALTER TABLE "djangocms_video_video" DROP CONSTRAINT "djangocms_video_v_cmsplugin_ptr_id_cc81a95d_fk_cms_cmsplugin_id"; (params [])
(0.002) ALTER TABLE "djangocms_video_video" DROP CONSTRAINT "djangocms_video_v_cmsplugin_ptr_id_cc81a95d_fk_cms_cmsplugin_id"; args=[]
ALTER TABLE "djangocms_video_video" ADD CONSTRAINT "djangocms_video_v_cmsplugin_ptr_id_cc81a95d_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "djangocms_video_video" ADD CONSTRAINT "djangocms_video_v_cmsplugin_ptr_id_cc81a95d_fk_cms_cmsplugin_id" FOREIGN KEY ("cmsplugin_ptr_id") REFERENCES "cms_cmsplugin" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('djangocms_video', '0002_set_related_name_for_cmsplugin_ptr', '2017-08-15T19:12:55.492382+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('djangocms_video', '0002_set_related_name_for_cmsplugin_ptr', datetime.datetime(2017, 8, 15, 19, 12, 55, 492382, tzinfo=<UTC>))
CREATE TABLE "easy_thumbnails_source" ("id" serial NOT NULL PRIMARY KEY, "storage_hash" varchar(40) NOT NULL, "name" varchar(255) NOT NULL, "modified" timestamp with time zone NOT NULL); (params None)
(0.056) CREATE TABLE "easy_thumbnails_source" ("id" serial NOT NULL PRIMARY KEY, "storage_hash" varchar(40) NOT NULL, "name" varchar(255) NOT NULL, "modified" timestamp with time zone NOT NULL); args=None
CREATE TABLE "easy_thumbnails_thumbnail" ("id" serial NOT NULL PRIMARY KEY, "storage_hash" varchar(40) NOT NULL, "name" varchar(255) NOT NULL, "modified" timestamp with time zone NOT NULL, "source_id" integer NOT NULL); (params None)
(0.049) CREATE TABLE "easy_thumbnails_thumbnail" ("id" serial NOT NULL PRIMARY KEY, "storage_hash" varchar(40) NOT NULL, "name" varchar(255) NOT NULL, "modified" timestamp with time zone NOT NULL, "source_id" integer NOT NULL); args=None
ALTER TABLE "easy_thumbnails_thumbnail" ADD CONSTRAINT "easy_thumbnails_thumbnail_storage_hash_fb375270_uniq" UNIQUE ("storage_hash", "name", "source_id"); (params [])
(0.038) ALTER TABLE "easy_thumbnails_thumbnail" ADD CONSTRAINT "easy_thumbnails_thumbnail_storage_hash_fb375270_uniq" UNIQUE ("storage_hash", "name", "source_id"); args=[]
ALTER TABLE "easy_thumbnails_source" ADD CONSTRAINT "easy_thumbnails_source_storage_hash_481ce32d_uniq" UNIQUE ("storage_hash", "name"); (params [])
(0.039) ALTER TABLE "easy_thumbnails_source" ADD CONSTRAINT "easy_thumbnails_source_storage_hash_481ce32d_uniq" UNIQUE ("storage_hash", "name"); args=[]
CREATE INDEX "easy_thumbnails_source_b454e115" ON "easy_thumbnails_source" ("storage_hash"); (params [])
(0.043) CREATE INDEX "easy_thumbnails_source_b454e115" ON "easy_thumbnails_source" ("storage_hash"); args=[]
CREATE INDEX "easy_thumbnails_source_b068931c" ON "easy_thumbnails_source" ("name"); (params [])
(0.044) CREATE INDEX "easy_thumbnails_source_b068931c" ON "easy_thumbnails_source" ("name"); args=[]
CREATE INDEX "easy_thumbnails_source_storage_hash_946cbcc9_like" ON "easy_thumbnails_source" ("storage_hash" varchar_pattern_ops); (params [])
(0.045) CREATE INDEX "easy_thumbnails_source_storage_hash_946cbcc9_like" ON "easy_thumbnails_source" ("storage_hash" varchar_pattern_ops); args=[]
CREATE INDEX "easy_thumbnails_source_name_5fe0edc6_like" ON "easy_thumbnails_source" ("name" varchar_pattern_ops); (params [])
(0.042) CREATE INDEX "easy_thumbnails_source_name_5fe0edc6_like" ON "easy_thumbnails_source" ("name" varchar_pattern_ops); args=[]
ALTER TABLE "easy_thumbnails_thumbnail" ADD CONSTRAINT "easy_thumbnails_source_id_5b57bc77_fk_easy_thumbnails_source_id" FOREIGN KEY ("source_id") REFERENCES "easy_thumbnails_source" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.012) ALTER TABLE "easy_thumbnails_thumbnail" ADD CONSTRAINT "easy_thumbnails_source_id_5b57bc77_fk_easy_thumbnails_source_id" FOREIGN KEY ("source_id") REFERENCES "easy_thumbnails_source" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "easy_thumbnails_thumbnail_b454e115" ON "easy_thumbnails_thumbnail" ("storage_hash"); (params [])
(0.041) CREATE INDEX "easy_thumbnails_thumbnail_b454e115" ON "easy_thumbnails_thumbnail" ("storage_hash"); args=[]
CREATE INDEX "easy_thumbnails_thumbnail_b068931c" ON "easy_thumbnails_thumbnail" ("name"); (params [])
(0.054) CREATE INDEX "easy_thumbnails_thumbnail_b068931c" ON "easy_thumbnails_thumbnail" ("name"); args=[]
CREATE INDEX "easy_thumbnails_thumbnail_0afd9202" ON "easy_thumbnails_thumbnail" ("source_id"); (params [])
(0.043) CREATE INDEX "easy_thumbnails_thumbnail_0afd9202" ON "easy_thumbnails_thumbnail" ("source_id"); args=[]
CREATE INDEX "easy_thumbnails_thumbnail_storage_hash_f1435f49_like" ON "easy_thumbnails_thumbnail" ("storage_hash" varchar_pattern_ops); (params [])
(0.044) CREATE INDEX "easy_thumbnails_thumbnail_storage_hash_f1435f49_like" ON "easy_thumbnails_thumbnail" ("storage_hash" varchar_pattern_ops); args=[]
CREATE INDEX "easy_thumbnails_thumbnail_name_b5882c31_like" ON "easy_thumbnails_thumbnail" ("name" varchar_pattern_ops); (params [])
(0.043) CREATE INDEX "easy_thumbnails_thumbnail_name_b5882c31_like" ON "easy_thumbnails_thumbnail" ("name" varchar_pattern_ops); args=[]
(0.013)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('easy_thumbnails', '0001_initial', '2017-08-15T19:12:56.316001+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('easy_thumbnails', '0001_initial', datetime.datetime(2017, 8, 15, 19, 12, 56, 316001, tzinfo=<UTC>))
CREATE TABLE "easy_thumbnails_thumbnaildimensions" ("id" serial NOT NULL PRIMARY KEY, "thumbnail_id" integer NOT NULL UNIQUE, "width" integer NULL CHECK ("width" >= 0), "height" integer NULL CHECK ("height" >= 0)); (params None)
(0.097) CREATE TABLE "easy_thumbnails_thumbnaildimensions" ("id" serial NOT NULL PRIMARY KEY, "thumbnail_id" integer NOT NULL UNIQUE, "width" integer NULL CHECK ("width" >= 0), "height" integer NULL CHECK ("height" >= 0)); args=None
ALTER TABLE "easy_thumbnails_thumbnaildimensions" ADD CONSTRAINT "easy_thum_thumbnail_id_c3a0c549_fk_easy_thumbnails_thumbnail_id" FOREIGN KEY ("thumbnail_id") REFERENCES "easy_thumbnails_thumbnail" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.014) ALTER TABLE "easy_thumbnails_thumbnaildimensions" ADD CONSTRAINT "easy_thum_thumbnail_id_c3a0c549_fk_easy_thumbnails_thumbnail_id" FOREIGN KEY ("thumbnail_id") REFERENCES "easy_thumbnails_thumbnail" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('easy_thumbnails', '0002_thumbnaildimensions', '2017-08-15T19:12:56.519309+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('easy_thumbnails', '0002_thumbnaildimensions', datetime.datetime(2017, 8, 15, 19, 12, 56, 519309, tzinfo=<UTC>))
CREATE TABLE "guardian_groupobjectpermission" ("id" serial NOT NULL PRIMARY KEY, "object_pk" varchar(255) NOT NULL, "content_type_id" integer NOT NULL, "group_id" integer NOT NULL, "permission_id" integer NOT NULL); (params None)
(0.050) CREATE TABLE "guardian_groupobjectpermission" ("id" serial NOT NULL PRIMARY KEY, "object_pk" varchar(255) NOT NULL, "content_type_id" integer NOT NULL, "group_id" integer NOT NULL, "permission_id" integer NOT NULL); args=None
CREATE TABLE "guardian_userobjectpermission" ("id" serial NOT NULL PRIMARY KEY, "object_pk" varchar(255) NOT NULL, "content_type_id" integer NOT NULL, "permission_id" integer NOT NULL, "user_id" integer NOT NULL); (params None)
(0.116) CREATE TABLE "guardian_userobjectpermission" ("id" serial NOT NULL PRIMARY KEY, "object_pk" varchar(255) NOT NULL, "content_type_id" integer NOT NULL, "permission_id" integer NOT NULL, "user_id" integer NOT NULL); args=None
ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_userobjectpermission_user_id_b0b3d2fc_uniq" UNIQUE ("user_id", "permission_id", "object_pk"); (params [])
(0.042) ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_userobjectpermission_user_id_b0b3d2fc_uniq" UNIQUE ("user_id", "permission_id", "object_pk"); args=[]
ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_groupobjectpermission_group_id_3f189f7c_uniq" UNIQUE ("group_id", "permission_id", "object_pk"); (params [])
(0.085) ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_groupobjectpermission_group_id_3f189f7c_uniq" UNIQUE ("group_id", "permission_id", "object_pk"); args=[]
ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_gro_content_type_id_7ade36b8_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_gro_content_type_id_7ade36b8_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_groupobjectpermissi_group_id_4bbbfb62_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_groupobjectpermissi_group_id_4bbbfb62_fk_auth_group_id" FOREIGN KEY ("group_id") REFERENCES "auth_group" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_groupobje_permission_id_36572738_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.005) ALTER TABLE "guardian_groupobjectpermission" ADD CONSTRAINT "guardian_groupobje_permission_id_36572738_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "guardian_groupobjectpermission_417f1b1c" ON "guardian_groupobjectpermission" ("content_type_id"); (params [])
(0.038) CREATE INDEX "guardian_groupobjectpermission_417f1b1c" ON "guardian_groupobjectpermission" ("content_type_id"); args=[]
CREATE INDEX "guardian_groupobjectpermission_0e939a4f" ON "guardian_groupobjectpermission" ("group_id"); (params [])
(0.043) CREATE INDEX "guardian_groupobjectpermission_0e939a4f" ON "guardian_groupobjectpermission" ("group_id"); args=[]
CREATE INDEX "guardian_groupobjectpermission_8373b171" ON "guardian_groupobjectpermission" ("permission_id"); (params [])
(0.044) CREATE INDEX "guardian_groupobjectpermission_8373b171" ON "guardian_groupobjectpermission" ("permission_id"); args=[]
ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_use_content_type_id_2e892405_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_use_content_type_id_2e892405_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_userobjec_permission_id_71807bfc_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_userobjec_permission_id_71807bfc_fk_auth_permission_id" FOREIGN KEY ("permission_id") REFERENCES "auth_permission" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_userobjec_user_id_d5c1e964_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "guardian_userobjectpermission" ADD CONSTRAINT "guardian_userobjec_user_id_d5c1e964_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "guardian_userobjectpermission_417f1b1c" ON "guardian_userobjectpermission" ("content_type_id"); (params [])
(0.059) CREATE INDEX "guardian_userobjectpermission_417f1b1c" ON "guardian_userobjectpermission" ("content_type_id"); args=[]
CREATE INDEX "guardian_userobjectpermission_8373b171" ON "guardian_userobjectpermission" ("permission_id"); (params [])
(0.065) CREATE INDEX "guardian_userobjectpermission_8373b171" ON "guardian_userobjectpermission" ("permission_id"); args=[]
CREATE INDEX "guardian_userobjectpermission_e8701ad4" ON "guardian_userobjectpermission" ("user_id"); (params [])
(0.048) CREATE INDEX "guardian_userobjectpermission_e8701ad4" ON "guardian_userobjectpermission" ("user_id"); args=[]
(0.014)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('guardian', '0001_initial', '2017-08-15T19:13:00.579537+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('guardian', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 0, 579537, tzinfo=<UTC>))
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0001_initial', '2017-08-15T19:13:00.597542+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 0, 597542, tzinfo=<UTC>))
CREATE TABLE "hosting_railsbetauser" ("id" serial NOT NULL PRIMARY KEY, "email" varchar(254) NOT NULL UNIQUE, "received_date" timestamp with time zone NOT NULL); (params None)
(0.105) CREATE TABLE "hosting_railsbetauser" ("id" serial NOT NULL PRIMARY KEY, "email" varchar(254) NOT NULL UNIQUE, "received_date" timestamp with time zone NOT NULL); args=None
CREATE INDEX "hosting_railsbetauser_email_b1fb21eb_like" ON "hosting_railsbetauser" ("email" varchar_pattern_ops); (params [])
(0.046) CREATE INDEX "hosting_railsbetauser_email_b1fb21eb_like" ON "hosting_railsbetauser" ("email" varchar_pattern_ops); args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0002_railsbetauser', '2017-08-15T19:13:00.844180+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0002_railsbetauser', datetime.datetime(2017, 8, 15, 19, 13, 0, 844180, tzinfo=<UTC>))
CREATE TABLE "hosting_virtualmachinetypes" ("id" serial NOT NULL PRIMARY KEY, "description" text NOT NULL, "base_price" double precision NOT NULL, "memory_price" double precision NOT NULL, "cores_price" double precision NOT NULL, "disk_size_price" double precision NOT NULL, "hosting_company" varchar(10) NOT NULL); (params None)
(0.108) CREATE TABLE "hosting_virtualmachinetypes" ("id" serial NOT NULL PRIMARY KEY, "description" text NOT NULL, "base_price" double precision NOT NULL, "memory_price" double precision NOT NULL, "cores_price" double precision NOT NULL, "disk_size_price" double precision NOT NULL, "hosting_company" varchar(10) NOT NULL); args=None
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0003_virtualmachinetypes', '2017-08-15T19:13:01.024989+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0003_virtualmachinetypes', datetime.datetime(2017, 8, 15, 19, 13, 1, 24989, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetypes" RENAME TO "hosting_virtualmachinetype"; (params [])
(0.001) ALTER TABLE "hosting_virtualmachinetypes" RENAME TO "hosting_virtualmachinetype"; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0004_auto_20160418_0034', '2017-08-15T19:13:01.105060+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0004_auto_20160418_0034', datetime.datetime(2017, 8, 15, 19, 13, 1, 105060, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" RENAME COLUMN "cores_price" TO "core_price"; (params [])
(0.002) ALTER TABLE "hosting_virtualmachinetype" RENAME COLUMN "cores_price" TO "core_price"; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0005_auto_20160418_0038', '2017-08-15T19:13:01.174819+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0005_auto_20160418_0038', datetime.datetime(2017, 8, 15, 19, 13, 1, 174819, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "hosting_company" TYPE varchar(15) USING "hosting_company"::varchar(15); (params [])
(0.002) ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "hosting_company" TYPE varchar(15) USING "hosting_company"::varchar(15); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0006_auto_20160418_0103', '2017-08-15T19:13:01.243458+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0006_auto_20160418_0103', datetime.datetime(2017, 8, 15, 19, 13, 1, 243458, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "hosting_company" TYPE varchar(30) USING "hosting_company"::varchar(30); (params [])
(0.002) ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "hosting_company" TYPE varchar(30) USING "hosting_company"::varchar(30); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0007_auto_20160418_0103', '2017-08-15T19:13:01.341538+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0007_auto_20160418_0103', datetime.datetime(2017, 8, 15, 19, 13, 1, 341538, tzinfo=<UTC>))
CREATE TABLE "hosting_virtualmachineplan" ("id" serial NOT NULL PRIMARY KEY, "cores" integer NOT NULL, "memory" integer NOT NULL, "disk_size" integer NOT NULL, "price" double precision NOT NULL, "vm_type_id" integer NOT NULL); (params None)
(0.053) CREATE TABLE "hosting_virtualmachineplan" ("id" serial NOT NULL PRIMARY KEY, "cores" integer NOT NULL, "memory" integer NOT NULL, "disk_size" integer NOT NULL, "price" double precision NOT NULL, "vm_type_id" integer NOT NULL); args=None
CREATE TABLE "hosting_virtualmachineplan_client" ("id" serial NOT NULL PRIMARY KEY, "virtualmachineplan_id" integer NOT NULL, "customuser_id" integer NOT NULL); (params None)
(0.119) CREATE TABLE "hosting_virtualmachineplan_client" ("id" serial NOT NULL PRIMARY KEY, "virtualmachineplan_id" integer NOT NULL, "customuser_id" integer NOT NULL); args=None
ALTER TABLE "hosting_virtualmachineplan" ADD CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id" FOREIGN KEY ("vm_type_id") REFERENCES "hosting_virtualmachinetype" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "hosting_virtualmachineplan" ADD CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id" FOREIGN KEY ("vm_type_id") REFERENCES "hosting_virtualmachinetype" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "hosting_virtualmachineplan_768997b6" ON "hosting_virtualmachineplan" ("vm_type_id"); (params [])
(0.068) CREATE INDEX "hosting_virtualmachineplan_768997b6" ON "hosting_virtualmachineplan" ("vm_type_id"); args=[]
ALTER TABLE "hosting_virtualmachineplan_client" ADD CONSTRAINT "dde3c9e583c06f2bfbea8483f5c1b706" FOREIGN KEY ("virtualmachineplan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "hosting_virtualmachineplan_client" ADD CONSTRAINT "dde3c9e583c06f2bfbea8483f5c1b706" FOREIGN KEY ("virtualmachineplan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "hosting_virtualmachineplan_client" ADD CONSTRAINT "hosting_virt_customuser_id_1072d19c_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "hosting_virtualmachineplan_client" ADD CONSTRAINT "hosting_virt_customuser_id_1072d19c_fk_membership_customuser_id" FOREIGN KEY ("customuser_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "hosting_virtualmachineplan_client" ADD CONSTRAINT "hosting_virtualmachineplan__virtualmachineplan_id_94bd68a8_uniq" UNIQUE ("virtualmachineplan_id", "customuser_id"); (params [])
(0.057) ALTER TABLE "hosting_virtualmachineplan_client" ADD CONSTRAINT "hosting_virtualmachineplan__virtualmachineplan_id_94bd68a8_uniq" UNIQUE ("virtualmachineplan_id", "customuser_id"); args=[]
CREATE INDEX "hosting_virtualmachineplan_client_a45820ac" ON "hosting_virtualmachineplan_client" ("virtualmachineplan_id"); (params [])
(0.045) CREATE INDEX "hosting_virtualmachineplan_client_a45820ac" ON "hosting_virtualmachineplan_client" ("virtualmachineplan_id"); args=[]
CREATE INDEX "hosting_virtualmachineplan_client_721e74b0" ON "hosting_virtualmachineplan_client" ("customuser_id"); (params [])
(0.041) CREATE INDEX "hosting_virtualmachineplan_client_721e74b0" ON "hosting_virtualmachineplan_client" ("customuser_id"); args=[]
(0.012)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0008_virtualmachineplan', '2017-08-15T19:13:02.437125+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0008_virtualmachineplan', datetime.datetime(2017, 8, 15, 19, 13, 2, 437125, tzinfo=<UTC>))
CREATE TABLE "hosting_hostingorder" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL); (params None)
(0.057) CREATE TABLE "hosting_hostingorder" ("id" serial NOT NULL PRIMARY KEY, "created_at" timestamp with time zone NOT NULL); args=None
DROP TABLE "hosting_virtualmachineplan_client" CASCADE; (params [])
(0.007) DROP TABLE "hosting_virtualmachineplan_client" CASCADE; args=[]
ALTER TABLE "hosting_hostingorder" ADD COLUMN "VMPlan_id" integer NOT NULL; (params [])
(0.002) ALTER TABLE "hosting_hostingorder" ADD COLUMN "VMPlan_id" integer NOT NULL; args=[]
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "VMPlan_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "VMPlan_id" DROP DEFAULT; args=[]
ALTER TABLE "hosting_hostingorder" ADD COLUMN "billing_address_id" integer NOT NULL; (params [])
(0.003) ALTER TABLE "hosting_hostingorder" ADD COLUMN "billing_address_id" integer NOT NULL; args=[]
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "billing_address_id" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "billing_address_id" DROP DEFAULT; args=[]
ALTER TABLE "hosting_hostingorder" ADD COLUMN "customer_id" integer NOT NULL; (params [])
(0.003) ALTER TABLE "hosting_hostingorder" ADD COLUMN "customer_id" integer NOT NULL; args=[]
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "customer_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "customer_id" DROP DEFAULT; args=[]
CREATE INDEX "hosting_hostingorder_d3e921a5" ON "hosting_hostingorder" ("VMPlan_id"); (params [])
(0.055) CREATE INDEX "hosting_hostingorder_d3e921a5" ON "hosting_hostingorder" ("VMPlan_id"); args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "hosting_hostingorder_e9192ced" ON "hosting_hostingorder" ("billing_address_id"); (params [])
(0.041) CREATE INDEX "hosting_hostingorder_e9192ced" ON "hosting_hostingorder" ("billing_address_id"); args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting__billing_address_id_cd7065fa_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting__billing_address_id_cd7065fa_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "hosting_hostingorder_cb24373b" ON "hosting_hostingorder" ("customer_id"); (params [])
(0.051) CREATE INDEX "hosting_hostingorder_cb24373b" ON "hosting_hostingorder" ("customer_id"); args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_ho_customer_id_27204fce_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_ho_customer_id_27204fce_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0009_auto_20160426_0444', '2017-08-15T19:13:04.671579+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0009_auto_20160426_0444', datetime.datetime(2017, 8, 15, 19, 13, 4, 671579, tzinfo=<UTC>))
ALTER TABLE "hosting_hostingorder" ADD COLUMN "approved" boolean DEFAULT %s NOT NULL; (params [False])
(0.173) ALTER TABLE "hosting_hostingorder" ADD COLUMN "approved" boolean DEFAULT false NOT NULL; args=[False]
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "approved" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "approved" DROP DEFAULT; args=[]
ALTER TABLE "hosting_hostingorder" ADD COLUMN "stripe_charge_id" varchar(100) NULL; (params [])
(0.002) ALTER TABLE "hosting_hostingorder" ADD COLUMN "stripe_charge_id" varchar(100) NULL; args=[]
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "stripe_charge_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "stripe_charge_id" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0010_auto_20160426_0530', '2017-08-15T19:13:06.872527+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0010_auto_20160426_0530', datetime.datetime(2017, 8, 15, 19, 13, 6, 872527, tzinfo=<UTC>))
(0.069)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_hostingorder']
(0.023)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
; args=['public', 'hosting_hostingorder']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_hostingorder'
; args=['hosting_hostingorder']
ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; (params [])
(0.003) ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hostingorder_VMPlan_id_f7b56af6_uniq" UNIQUE ("VMPlan_id"); (params [])
(0.064) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hostingorder_VMPlan_id_f7b56af6_uniq" UNIQUE ("VMPlan_id"); args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.011) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0011_auto_20160426_0555', '2017-08-15T19:13:07.867956+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0011_auto_20160426_0555', datetime.datetime(2017, 8, 15, 19, 13, 7, 867956, tzinfo=<UTC>))
ALTER TABLE "hosting_hostingorder" ADD COLUMN "cc_brand" varchar(10) DEFAULT %s NOT NULL; (params ['Visa'])
(0.364) ALTER TABLE "hosting_hostingorder" ADD COLUMN "cc_brand" varchar(10) DEFAULT 'Visa' NOT NULL; args=['Visa']
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "cc_brand" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "cc_brand" DROP DEFAULT; args=[]
ALTER TABLE "hosting_hostingorder" ADD COLUMN "last4" varchar(4) DEFAULT %s NOT NULL; (params ['1111'])
(0.278) ALTER TABLE "hosting_hostingorder" ADD COLUMN "last4" varchar(4) DEFAULT '1111' NOT NULL; args=['1111']
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "last4" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "last4" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0012_auto_20160501_1850', '2017-08-15T19:13:09.811276+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0012_auto_20160501_1850', datetime.datetime(2017, 8, 15, 19, 13, 9, 811276, tzinfo=<UTC>))
(0.060)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_hostingorder']
(0.026)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
; args=['public', 'hosting_hostingorder']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_hostingorder'
; args=['hosting_hostingorder']
ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; (params [])
(0.004) ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; args=[]
(0.071)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_hostingorder']
(0.026)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
; args=['public', 'hosting_hostingorder']
(0.005)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_hostingorder'
; args=['hosting_hostingorder']
ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hostingorder_VMPlan_id_f7b56af6_uniq"; (params [])
(0.002) ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hostingorder_VMPlan_id_f7b56af6_uniq"; args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0013_auto_20160505_0302', '2017-08-15T19:13:10.661203+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0013_auto_20160505_0302', datetime.datetime(2017, 8, 15, 19, 13, 10, 661203, tzinfo=<UTC>))
(0.058)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_hostingorder']
(0.025)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
; args=['public', 'hosting_hostingorder']
(0.005)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_hostingorder'
; args=['hosting_hostingorder']
ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; (params [])
(0.003) ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("VMPlan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0014_auto_20160505_0541', '2017-08-15T19:13:11.395887+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0014_auto_20160505_0541', datetime.datetime(2017, 8, 15, 19, 13, 11, 395887, tzinfo=<UTC>))
(0.092)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_hostingorder']
(0.033)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
; args=['public', 'hosting_hostingorder']
(0.005)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_hostingorder'
; args=['hosting_hostingorder']
ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; (params [])
(0.004) ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_hos_VMPlan_id_f7b56af6_fk_hosting_virtualmachineplan_id"; args=[]
ALTER TABLE "hosting_hostingorder" RENAME COLUMN "VMPlan_id" TO "vm_plan_id"; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" RENAME COLUMN "VMPlan_id" TO "vm_plan_id"; args=[]
ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_ho_vm_plan_id_2d1dba79_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("vm_plan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "hosting_hostingorder" ADD CONSTRAINT "hosting_ho_vm_plan_id_2d1dba79_fk_hosting_virtualmachineplan_id" FOREIGN KEY ("vm_plan_id") REFERENCES "hosting_virtualmachineplan" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0015_auto_20160512_0448', '2017-08-15T19:13:12.449278+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0015_auto_20160512_0448', datetime.datetime(2017, 8, 15, 19, 13, 12, 449278, tzinfo=<UTC>))
DROP TABLE "hosting_railsbetauser" CASCADE; (params [])
(0.007) DROP TABLE "hosting_railsbetauser" CASCADE; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0016_delete_railsbetauser', '2017-08-15T19:13:12.541363+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0016_delete_railsbetauser', datetime.datetime(2017, 8, 15, 19, 13, 12, 541363, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "location" varchar(3) DEFAULT %s NOT NULL; (params ['DE'])
(0.330) ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "location" varchar(3) DEFAULT 'DE' NOT NULL; args=['DE']
ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "location" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "location" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0017_virtualmachinetype_location', '2017-08-15T19:13:13.796276+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0017_virtualmachinetype_location', datetime.datetime(2017, 8, 15, 19, 13, 13, 796276, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "public_key" text DEFAULT %s NOT NULL; (params ['sada'])
(0.239) ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "public_key" text DEFAULT 'sada' NOT NULL; args=['sada']
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "public_key" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "public_key" DROP DEFAULT; args=[]
(0.007)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.005) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0018_virtualmachineplan_public_key', '2017-08-15T19:13:14.950736+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0018_virtualmachineplan_public_key', datetime.datetime(2017, 8, 15, 19, 13, 14, 950736, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "status" varchar(20) DEFAULT %s NOT NULL; (params ['online'])
(0.151) ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "status" varchar(20) DEFAULT 'online' NOT NULL; args=['online']
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "status" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "status" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0019_virtualmachineplan_status', '2017-08-15T19:13:15.743469+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0019_virtualmachineplan_status', datetime.datetime(2017, 8, 15, 19, 13, 15, 743469, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "status" SET DEFAULT %s; (params ['pending'])
(0.002) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "status" SET DEFAULT 'pending'; args=['pending']
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "status" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "status" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0020_auto_20160526_0258', '2017-08-15T19:13:16.384148+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0020_auto_20160526_0258', datetime.datetime(2017, 8, 15, 19, 13, 16, 384148, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0021_auto_20160526_0445', '2017-08-15T19:13:16.982679+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0021_auto_20160526_0445', datetime.datetime(2017, 8, 15, 19, 13, 16, 982679, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "ip" varchar(50) DEFAULT %s NOT NULL; (params ['127.0.0.1'])
(0.155) ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "ip" varchar(50) DEFAULT '127.0.0.1' NOT NULL; args=['127.0.0.1']
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "ip" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "ip" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0022_virtualmachineplan_ip', '2017-08-15T19:13:17.734708+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0022_virtualmachineplan_ip', datetime.datetime(2017, 8, 15, 19, 13, 17, 734708, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "configutarion" varchar(20) DEFAULT %s NOT NULL; (params ['django'])
(0.415) ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "configutarion" varchar(20) DEFAULT 'django' NOT NULL; args=['django']
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "configutarion" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "configutarion" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0023_virtualmachineplan_configutarion', '2017-08-15T19:13:19.050302+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0023_virtualmachineplan_configutarion', datetime.datetime(2017, 8, 15, 19, 13, 19, 50302, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" RENAME COLUMN "configutarion" TO "configuration"; (params [])
(0.002) ALTER TABLE "hosting_virtualmachineplan" RENAME COLUMN "configutarion" TO "configuration"; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0024_auto_20160607_0231', '2017-08-15T19:13:19.785768+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0024_auto_20160607_0231', datetime.datetime(2017, 8, 15, 19, 13, 19, 785768, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "ip" SET DEFAULT %s; (params [''])
(0.002) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "ip" SET DEFAULT ''; args=['']
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "ip" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "ip" DROP DEFAULT; args=[]
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "public_key" SET DEFAULT %s; (params [''])
(0.002) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "public_key" SET DEFAULT ''; args=['']
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "public_key" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "public_key" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0025_auto_20160621_0522', '2017-08-15T19:13:21.421187+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0025_auto_20160621_0522', datetime.datetime(2017, 8, 15, 19, 13, 21, 421187, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0026_auto_20160625_0028', '2017-08-15T19:13:22.056228+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0026_auto_20160625_0028', datetime.datetime(2017, 8, 15, 19, 13, 22, 56228, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0027_auto_20160711_0210', '2017-08-15T19:13:22.649155+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0027_auto_20160711_0210', datetime.datetime(2017, 8, 15, 19, 13, 22, 649155, tzinfo=<UTC>))
CREATE TABLE "hosting_userhostingkey" ("id" serial NOT NULL PRIMARY KEY, "public_key" text NOT NULL, "user_id" integer NOT NULL); (params None)
(0.297) CREATE TABLE "hosting_userhostingkey" ("id" serial NOT NULL PRIMARY KEY, "public_key" text NOT NULL, "user_id" integer NOT NULL); args=None
ALTER TABLE "hosting_userhostingkey" ADD CONSTRAINT "hosting_userhostin_user_id_d1b597dc_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "hosting_userhostingkey" ADD CONSTRAINT "hosting_userhostin_user_id_d1b597dc_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "hosting_userhostingkey_e8701ad4" ON "hosting_userhostingkey" ("user_id"); (params [])
(0.047) CREATE INDEX "hosting_userhostingkey_e8701ad4" ON "hosting_userhostingkey" ("user_id"); args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0028_managevm_userhostingkey', '2017-08-15T19:13:23.919896+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0028_managevm_userhostingkey', datetime.datetime(2017, 8, 15, 19, 13, 23, 919896, tzinfo=<UTC>))
ALTER TABLE "hosting_userhostingkey" ADD COLUMN "created_at" timestamp with time zone DEFAULT %s NOT NULL; (params [datetime.datetime(2017, 4, 30, 19, 4, 20, 780173, tzinfo=<UTC>)])
(0.218) ALTER TABLE "hosting_userhostingkey" ADD COLUMN "created_at" timestamp with time zone DEFAULT '2017-04-30T19:04:20.780173+00:00'::timestamptz NOT NULL; args=[datetime.datetime(2017, 4, 30, 19, 4, 20, 780173, tzinfo=<UTC>)]
ALTER TABLE "hosting_userhostingkey" ALTER COLUMN "created_at" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_userhostingkey" ALTER COLUMN "created_at" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0029_userhostingkey_created_at', '2017-08-15T19:13:24.739213+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0029_userhostingkey_created_at', datetime.datetime(2017, 8, 15, 19, 13, 24, 739213, tzinfo=<UTC>))
ALTER TABLE "hosting_userhostingkey" ADD COLUMN "name" varchar(100) DEFAULT %s NOT NULL; (params [''])
(0.224) ALTER TABLE "hosting_userhostingkey" ADD COLUMN "name" varchar(100) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "hosting_userhostingkey" ALTER COLUMN "name" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_userhostingkey" ALTER COLUMN "name" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0030_userhostingkey_name', '2017-08-15T19:13:25.582487+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0030_userhostingkey_name', datetime.datetime(2017, 8, 15, 19, 13, 25, 582487, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" DROP COLUMN "hosting_company" CASCADE; (params [])
(0.002) ALTER TABLE "hosting_virtualmachinetype" DROP COLUMN "hosting_company" CASCADE; args=[]
ALTER TABLE "hosting_virtualmachinetype" DROP COLUMN "location" CASCADE; (params [])
(0.001) ALTER TABLE "hosting_virtualmachinetype" DROP COLUMN "location" CASCADE; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0031_auto_20170503_0554', '2017-08-15T19:13:26.953199+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0031_auto_20170503_0554', datetime.datetime(2017, 8, 15, 19, 13, 26, 953199, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "cores" integer DEFAULT %s NOT NULL; (params [0])
(0.126) ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "cores" integer DEFAULT 0 NOT NULL; args=[0]
ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "cores" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "cores" DROP DEFAULT; args=[]
ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "disk_size" integer DEFAULT %s NOT NULL; (params [0])
(0.180) ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "disk_size" integer DEFAULT 0 NOT NULL; args=[0]
ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "disk_size" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "disk_size" DROP DEFAULT; args=[]
ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "memory" integer DEFAULT %s NOT NULL; (params [0])
(0.139) ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "memory" integer DEFAULT 0 NOT NULL; args=[0]
ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "memory" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "memory" DROP DEFAULT; args=[]
(0.007)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0032_auto_20170504_0315', '2017-08-15T19:13:30.026060+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0032_auto_20170504_0315', datetime.datetime(2017, 8, 15, 19, 13, 30, 26060, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "configuration" varchar(10) DEFAULT %s NOT NULL; (params ['ubuntu'])
(0.093) ALTER TABLE "hosting_virtualmachinetype" ADD COLUMN "configuration" varchar(10) DEFAULT 'ubuntu' NOT NULL; args=['ubuntu']
ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "configuration" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_virtualmachinetype" ALTER COLUMN "configuration" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0033_virtualmachinetype_configuration', '2017-08-15T19:13:30.770872+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0033_virtualmachinetype_configuration', datetime.datetime(2017, 8, 15, 19, 13, 30, 770872, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachinetype" DROP COLUMN "configuration" CASCADE; (params [])
(0.002) ALTER TABLE "hosting_virtualmachinetype" DROP COLUMN "configuration" CASCADE; args=[]
(0.042)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_virtualmachineplan'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_virtualmachineplan']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_virtualmachineplan'
; args=['public', 'hosting_virtualmachineplan']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_virtualmachineplan'
; args=['hosting_virtualmachineplan']
ALTER TABLE "hosting_virtualmachineplan" DROP CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id"; (params [])
(0.002) ALTER TABLE "hosting_virtualmachineplan" DROP CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id"; args=[]
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "vm_type_id" DROP NOT NULL; (params [])
(0.001) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "vm_type_id" DROP NOT NULL; args=[]
ALTER TABLE "hosting_virtualmachineplan" ADD CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id" FOREIGN KEY ("vm_type_id") REFERENCES "hosting_virtualmachinetype" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "hosting_virtualmachineplan" ADD CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id" FOREIGN KEY ("vm_type_id") REFERENCES "hosting_virtualmachinetype" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0034_auto_20170504_0331', '2017-08-15T19:13:32.627872+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0034_auto_20170504_0331', datetime.datetime(2017, 8, 15, 19, 13, 32, 627872, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "opennebula_id" integer DEFAULT %s NOT NULL; (params [0])
(0.415) ALTER TABLE "hosting_virtualmachineplan" ADD COLUMN "opennebula_id" integer DEFAULT 0 NOT NULL; args=[0]
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "opennebula_id" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "opennebula_id" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0035_virtualmachineplan_opennebula_id', '2017-08-15T19:13:33.679920+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0035_virtualmachineplan_opennebula_id', datetime.datetime(2017, 8, 15, 19, 13, 33, 679920, tzinfo=<UTC>))
ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "opennebula_id" DROP NOT NULL; (params [])
(0.002) ALTER TABLE "hosting_virtualmachineplan" ALTER COLUMN "opennebula_id" DROP NOT NULL; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0036_auto_20170506_2312', '2017-08-15T19:13:34.482609+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0036_auto_20170506_2312', datetime.datetime(2017, 8, 15, 19, 13, 34, 482609, tzinfo=<UTC>))
CREATE TABLE "utils_userbillingaddress" ("id" serial NOT NULL PRIMARY KEY, "street_address" varchar(100) NOT NULL, "city" varchar(50) NOT NULL, "postal_code" varchar(50) NOT NULL, "country" varchar(2) NOT NULL, "current" boolean NOT NULL, "user_id" integer NOT NULL); (params None)
(0.180) CREATE TABLE "utils_userbillingaddress" ("id" serial NOT NULL PRIMARY KEY, "street_address" varchar(100) NOT NULL, "city" varchar(50) NOT NULL, "postal_code" varchar(50) NOT NULL, "country" varchar(2) NOT NULL, "current" boolean NOT NULL, "user_id" integer NOT NULL); args=None
ALTER TABLE "utils_userbillingaddress" ADD CONSTRAINT "utils_userbillinga_user_id_78761d17_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "utils_userbillingaddress" ADD CONSTRAINT "utils_userbillinga_user_id_78761d17_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "utils_userbillingaddress_e8701ad4" ON "utils_userbillingaddress" ("user_id"); (params [])
(0.065) CREATE INDEX "utils_userbillingaddress_e8701ad4" ON "utils_userbillingaddress" ("user_id"); args=[]
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('utils', '0003_userbillingaddress', '2017-08-15T19:13:35.837551+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('utils', '0003_userbillingaddress', datetime.datetime(2017, 8, 15, 19, 13, 35, 837551, tzinfo=<UTC>))
(0.040)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'utils_userbillingaddress'
ORDER BY kc.ordinal_position ASC
; args=['public', 'utils_userbillingaddress']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'utils_userbillingaddress'
; args=['public', 'utils_userbillingaddress']
(0.002)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'utils_userbillingaddress'
; args=['utils_userbillingaddress']
ALTER TABLE "utils_userbillingaddress" DROP CONSTRAINT "utils_userbillinga_user_id_78761d17_fk_membership_customuser_id"; (params [])
(0.003) ALTER TABLE "utils_userbillingaddress" DROP CONSTRAINT "utils_userbillinga_user_id_78761d17_fk_membership_customuser_id"; args=[]
ALTER TABLE "utils_userbillingaddress" ADD CONSTRAINT "utils_userbillinga_user_id_78761d17_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "utils_userbillingaddress" ADD CONSTRAINT "utils_userbillinga_user_id_78761d17_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('utils', '0004_auto_20161013_0253', '2017-08-15T19:13:36.660533+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('utils', '0004_auto_20161013_0253', datetime.datetime(2017, 8, 15, 19, 13, 36, 660533, tzinfo=<UTC>))
ALTER TABLE "utils_contactmessage" ALTER COLUMN "phone_number" SET DEFAULT %s; (params [''])
(0.002) ALTER TABLE "utils_contactmessage" ALTER COLUMN "phone_number" SET DEFAULT ''; args=['']
ALTER TABLE "utils_contactmessage" ALTER COLUMN "phone_number" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "utils_contactmessage" ALTER COLUMN "phone_number" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('utils', '0005_auto_20170322_1443', '2017-08-15T19:13:36.774098+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('utils', '0005_auto_20170322_1443', datetime.datetime(2017, 8, 15, 19, 13, 36, 774098, tzinfo=<UTC>))
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0028_managevms', '2017-08-15T19:13:36.875180+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0028_managevms', datetime.datetime(2017, 8, 15, 19, 13, 36, 875180, tzinfo=<UTC>))
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0029_managevm', '2017-08-15T19:13:36.947246+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0029_managevm', datetime.datetime(2017, 8, 15, 19, 13, 36, 947246, tzinfo=<UTC>))
CREATE TABLE "hosting_hostingbill" ("id" serial NOT NULL PRIMARY KEY, "billing_address_id" integer NOT NULL, "customer_id" integer NOT NULL); (params None)
(0.061) CREATE TABLE "hosting_hostingbill" ("id" serial NOT NULL PRIMARY KEY, "billing_address_id" integer NOT NULL, "customer_id" integer NOT NULL); args=None
ALTER TABLE "hosting_hostingbill" ADD CONSTRAINT "hosting__billing_address_id_1ecd6fc0_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "hosting_hostingbill" ADD CONSTRAINT "hosting__billing_address_id_1ecd6fc0_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "hosting_hostingbill" ADD CONSTRAINT "hosting_ho_customer_id_3780cd9d_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "hosting_hostingbill" ADD CONSTRAINT "hosting_ho_customer_id_3780cd9d_fk_membership_stripecustomer_id" FOREIGN KEY ("customer_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "hosting_hostingbill_e9192ced" ON "hosting_hostingbill" ("billing_address_id"); (params [])
(0.108) CREATE INDEX "hosting_hostingbill_e9192ced" ON "hosting_hostingbill" ("billing_address_id"); args=[]
CREATE INDEX "hosting_hostingbill_cb24373b" ON "hosting_hostingbill" ("customer_id"); (params [])
(0.072) CREATE INDEX "hosting_hostingbill_cb24373b" ON "hosting_hostingbill" ("customer_id"); args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0030_hostingbill', '2017-08-15T19:13:37.920067+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0030_hostingbill', datetime.datetime(2017, 8, 15, 19, 13, 37, 920067, tzinfo=<UTC>))
ALTER TABLE "hosting_hostingbill" ADD COLUMN "total_price" double precision DEFAULT %s NOT NULL; (params [0.0])
(0.204) ALTER TABLE "hosting_hostingbill" ADD COLUMN "total_price" double precision DEFAULT 0.0 NOT NULL; args=[0.0]
ALTER TABLE "hosting_hostingbill" ALTER COLUMN "total_price" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingbill" ALTER COLUMN "total_price" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0031_hostingbill_total_price', '2017-08-15T19:13:38.823080+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0031_hostingbill_total_price', datetime.datetime(2017, 8, 15, 19, 13, 38, 823080, tzinfo=<UTC>))
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.001) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0037_merge', '2017-08-15T19:13:38.862209+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0037_merge', datetime.datetime(2017, 8, 15, 19, 13, 38, 862209, tzinfo=<UTC>))
(0.053)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_virtualmachineplan'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_virtualmachineplan']
(0.031)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_virtualmachineplan'
; args=['public', 'hosting_virtualmachineplan']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_virtualmachineplan'
; args=['hosting_virtualmachineplan']
ALTER TABLE "hosting_virtualmachineplan" DROP CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id"; (params [])
(0.002) ALTER TABLE "hosting_virtualmachineplan" DROP CONSTRAINT "hosting_vi_vm_type_id_d3b8d249_fk_hosting_virtualmachinetype_id"; args=[]
ALTER TABLE "hosting_virtualmachineplan" DROP COLUMN "vm_type_id" CASCADE; (params [])
(0.002) ALTER TABLE "hosting_virtualmachineplan" DROP COLUMN "vm_type_id" CASCADE; args=[]
(0.069)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
ORDER BY kc.ordinal_position ASC
; args=['public', 'hosting_hostingorder']
(0.028)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'hosting_hostingorder'
; args=['public', 'hosting_hostingorder']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'hosting_hostingorder'
; args=['hosting_hostingorder']
ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_ho_vm_plan_id_2d1dba79_fk_hosting_virtualmachineplan_id"; (params [])
(0.002) ALTER TABLE "hosting_hostingorder" DROP CONSTRAINT "hosting_ho_vm_plan_id_2d1dba79_fk_hosting_virtualmachineplan_id"; args=[]
ALTER TABLE "hosting_hostingorder" DROP COLUMN "vm_plan_id" CASCADE; (params [])
(0.002) ALTER TABLE "hosting_hostingorder" DROP COLUMN "vm_plan_id" CASCADE; args=[]
ALTER TABLE "hosting_hostingorder" ADD COLUMN "vm_id" integer DEFAULT %s NOT NULL; (params [0])
(0.178) ALTER TABLE "hosting_hostingorder" ADD COLUMN "vm_id" integer DEFAULT 0 NOT NULL; args=[0]
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "vm_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "vm_id" DROP DEFAULT; args=[]
DROP TABLE "hosting_virtualmachineplan" CASCADE; (params [])
(0.004) DROP TABLE "hosting_virtualmachineplan" CASCADE; args=[]
DROP TABLE "hosting_virtualmachinetype" CASCADE; (params [])
(0.006) DROP TABLE "hosting_virtualmachinetype" CASCADE; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0038_auto_20170512_1006', '2017-08-15T19:13:41.932067+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0038_auto_20170512_1006', datetime.datetime(2017, 8, 15, 19, 13, 41, 932067, tzinfo=<UTC>))
ALTER TABLE "hosting_hostingorder" ADD COLUMN "price" double precision DEFAULT %s NOT NULL; (params [0.0])
(0.187) ALTER TABLE "hosting_hostingorder" ADD COLUMN "price" double precision DEFAULT 0.0 NOT NULL; args=[0.0]
ALTER TABLE "hosting_hostingorder" ALTER COLUMN "price" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "hosting_hostingorder" ALTER COLUMN "price" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0039_hostingorder_price', '2017-08-15T19:13:42.788043+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0039_hostingorder_price', datetime.datetime(2017, 8, 15, 19, 13, 42, 788043, tzinfo=<UTC>))
CREATE TABLE "hosting_hostingplan" ("id" serial NOT NULL PRIMARY KEY, "disk_size" double precision NOT NULL, "cpu_cores" double precision NOT NULL, "memory" double precision NOT NULL); (params None)
(0.060) CREATE TABLE "hosting_hostingplan" ("id" serial NOT NULL PRIMARY KEY, "disk_size" double precision NOT NULL, "cpu_cores" double precision NOT NULL, "memory" double precision NOT NULL); args=None
(0.010)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0040_hostingplan', '2017-08-15T19:13:42.943194+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0040_hostingplan', datetime.datetime(2017, 8, 15, 19, 13, 42, 943194, tzinfo=<UTC>))
ALTER TABLE "hosting_userhostingkey" ADD COLUMN "private_key" varchar(100) DEFAULT %s NOT NULL; (params [''])
(0.147) ALTER TABLE "hosting_userhostingkey" ADD COLUMN "private_key" varchar(100) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "hosting_userhostingkey" ALTER COLUMN "private_key" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "hosting_userhostingkey" ALTER COLUMN "private_key" DROP DEFAULT; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('hosting', '0041_userhostingkey_private_key', '2017-08-15T19:13:43.797998+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('hosting', '0041_userhostingkey_private_key', datetime.datetime(2017, 8, 15, 19, 13, 43, 797998, tzinfo=<UTC>))
CREATE TABLE "menus_cachekey" ("id" serial NOT NULL PRIMARY KEY, "language" varchar(255) NOT NULL, "site" integer NOT NULL CHECK ("site" >= 0), "key" varchar(255) NOT NULL); (params None)
(0.098) CREATE TABLE "menus_cachekey" ("id" serial NOT NULL PRIMARY KEY, "language" varchar(255) NOT NULL, "site" integer NOT NULL CHECK ("site" >= 0), "key" varchar(255) NOT NULL); args=None
(0.009)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('menus', '0001_initial', '2017-08-15T19:13:43.961198+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('menus', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 43, 961198, tzinfo=<UTC>))
CREATE TABLE "nosystemd_donation" ("id" serial NOT NULL PRIMARY KEY, "donation" double precision NOT NULL, "created_at" timestamp with time zone NOT NULL, "last4" varchar(4) NOT NULL, "cc_brand" varchar(10) NOT NULL, "stripe_charge_id" varchar(100) NULL, "billing_address_id" integer NOT NULL, "donator_id" integer NOT NULL); (params None)
(0.071) CREATE TABLE "nosystemd_donation" ("id" serial NOT NULL PRIMARY KEY, "donation" double precision NOT NULL, "created_at" timestamp with time zone NOT NULL, "last4" varchar(4) NOT NULL, "cc_brand" varchar(10) NOT NULL, "stripe_charge_id" varchar(100) NULL, "billing_address_id" integer NOT NULL, "donator_id" integer NOT NULL); args=None
ALTER TABLE "nosystemd_donation" ADD CONSTRAINT "nosystem_billing_address_id_9b2bfabe_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "nosystemd_donation" ADD CONSTRAINT "nosystem_billing_address_id_9b2bfabe_fk_utils_billingaddress_id" FOREIGN KEY ("billing_address_id") REFERENCES "utils_billingaddress" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "nosystemd_donation" ADD CONSTRAINT "nosystemd_donat_donator_id_4baf91a3_fk_membership_customuser_id" FOREIGN KEY ("donator_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "nosystemd_donation" ADD CONSTRAINT "nosystemd_donat_donator_id_4baf91a3_fk_membership_customuser_id" FOREIGN KEY ("donator_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "nosystemd_donation_e9192ced" ON "nosystemd_donation" ("billing_address_id"); (params [])
(0.060) CREATE INDEX "nosystemd_donation_e9192ced" ON "nosystemd_donation" ("billing_address_id"); args=[]
CREATE INDEX "nosystemd_donation_740d224f" ON "nosystemd_donation" ("donator_id"); (params [])
(0.049) CREATE INDEX "nosystemd_donation_740d224f" ON "nosystemd_donation" ("donator_id"); args=[]
(0.007)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('nosystemd', '0001_initial', '2017-08-15T19:13:44.806210+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('nosystemd', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 44, 806210, tzinfo=<UTC>))
(0.051)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'nosystemd_donation'
ORDER BY kc.ordinal_position ASC
; args=['public', 'nosystemd_donation']
(0.022)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'nosystemd_donation'
; args=['public', 'nosystemd_donation']
(0.003)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'nosystemd_donation'
; args=['nosystemd_donation']
ALTER TABLE "nosystemd_donation" DROP CONSTRAINT "nosystemd_donat_donator_id_4baf91a3_fk_membership_customuser_id"; (params [])
(0.002) ALTER TABLE "nosystemd_donation" DROP CONSTRAINT "nosystemd_donat_donator_id_4baf91a3_fk_membership_customuser_id"; args=[]
ALTER TABLE "nosystemd_donation" ADD CONSTRAINT "nosystemd_d_donator_id_4baf91a3_fk_membership_stripecustomer_id" FOREIGN KEY ("donator_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "nosystemd_donation" ADD CONSTRAINT "nosystemd_d_donator_id_4baf91a3_fk_membership_stripecustomer_id" FOREIGN KEY ("donator_id") REFERENCES "membership_stripecustomer" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('nosystemd', '0002_auto_20160723_1848', '2017-08-15T19:13:45.518977+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('nosystemd', '0002_auto_20160723_1848', datetime.datetime(2017, 8, 15, 19, 13, 45, 518977, tzinfo=<UTC>))
CREATE TABLE "nosystemd_donatorstatus" ("id" serial NOT NULL PRIMARY KEY, "status" varchar(10) NOT NULL, "user_id" integer NOT NULL); (params None)
(0.060) CREATE TABLE "nosystemd_donatorstatus" ("id" serial NOT NULL PRIMARY KEY, "status" varchar(10) NOT NULL, "user_id" integer NOT NULL); args=None
ALTER TABLE "nosystemd_donatorstatus" ADD CONSTRAINT "nosystemd_donators_user_id_faa76894_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "nosystemd_donatorstatus" ADD CONSTRAINT "nosystemd_donators_user_id_faa76894_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "nosystemd_donatorstatus_e8701ad4" ON "nosystemd_donatorstatus" ("user_id"); (params [])
(0.045) CREATE INDEX "nosystemd_donatorstatus_e8701ad4" ON "nosystemd_donatorstatus" ("user_id"); args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('nosystemd', '0003_donatorstatus', '2017-08-15T19:13:46.242317+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('nosystemd', '0003_donatorstatus', datetime.datetime(2017, 8, 15, 19, 13, 46, 242317, tzinfo=<UTC>))
ALTER TABLE "nosystemd_donatorstatus" ALTER COLUMN "status" SET DEFAULT %s; (params ['active'])
(0.002) ALTER TABLE "nosystemd_donatorstatus" ALTER COLUMN "status" SET DEFAULT 'active'; args=['active']
ALTER TABLE "nosystemd_donatorstatus" ALTER COLUMN "status" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "nosystemd_donatorstatus" ALTER COLUMN "status" DROP DEFAULT; args=[]
(0.052)
SELECT
kc.constraint_name,
kc.column_name,
c.constraint_type,
array(SELECT table_name::text || '.' || column_name::text
FROM information_schema.constraint_column_usage
WHERE constraint_name = kc.constraint_name)
FROM information_schema.key_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
kc.table_schema = 'public' AND
kc.table_name = 'nosystemd_donatorstatus'
ORDER BY kc.ordinal_position ASC
; args=['public', 'nosystemd_donatorstatus']
(0.025)
SELECT kc.constraint_name, kc.column_name
FROM information_schema.constraint_column_usage AS kc
JOIN information_schema.table_constraints AS c ON
kc.table_schema = c.table_schema AND
kc.table_name = c.table_name AND
kc.constraint_name = c.constraint_name
WHERE
c.constraint_type = 'CHECK' AND
kc.table_schema = 'public' AND
kc.table_name = 'nosystemd_donatorstatus'
; args=['public', 'nosystemd_donatorstatus']
(0.004)
SELECT
c2.relname,
ARRAY(
SELECT (SELECT attname FROM pg_catalog.pg_attribute WHERE attnum = i AND attrelid = c.oid)
FROM unnest(idx.indkey) i
),
idx.indisunique,
idx.indisprimary
FROM pg_catalog.pg_class c, pg_catalog.pg_class c2,
pg_catalog.pg_index idx
WHERE c.oid = idx.indrelid
AND idx.indexrelid = c2.oid
AND c.relname = 'nosystemd_donatorstatus'
; args=['nosystemd_donatorstatus']
ALTER TABLE "nosystemd_donatorstatus" DROP CONSTRAINT "nosystemd_donators_user_id_faa76894_fk_membership_customuser_id"; (params [])
(0.004) ALTER TABLE "nosystemd_donatorstatus" DROP CONSTRAINT "nosystemd_donators_user_id_faa76894_fk_membership_customuser_id"; args=[]
ALTER TABLE "nosystemd_donatorstatus" ADD CONSTRAINT "nosystemd_donatorstatus_user_id_faa76894_uniq" UNIQUE ("user_id"); (params [])
(0.125) ALTER TABLE "nosystemd_donatorstatus" ADD CONSTRAINT "nosystemd_donatorstatus_user_id_faa76894_uniq" UNIQUE ("user_id"); args=[]
ALTER TABLE "nosystemd_donatorstatus" ADD CONSTRAINT "nosystemd_donators_user_id_faa76894_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "nosystemd_donatorstatus" ADD CONSTRAINT "nosystemd_donators_user_id_faa76894_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('nosystemd', '0004_auto_20160727_0521', '2017-08-15T19:13:48.432213+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('nosystemd', '0004_auto_20160727_0521', datetime.datetime(2017, 8, 15, 19, 13, 48, 432213, tzinfo=<UTC>))
CREATE TABLE "reversion_revision" ("id" serial NOT NULL PRIMARY KEY, "manager_slug" varchar(200) NOT NULL, "date_created" timestamp with time zone NOT NULL, "comment" text NOT NULL, "user_id" integer NULL); (params None)
(0.112) CREATE TABLE "reversion_revision" ("id" serial NOT NULL PRIMARY KEY, "manager_slug" varchar(200) NOT NULL, "date_created" timestamp with time zone NOT NULL, "comment" text NOT NULL, "user_id" integer NULL); args=None
CREATE TABLE "reversion_version" ("id" serial NOT NULL PRIMARY KEY, "object_id" text NOT NULL, "object_id_int" integer NULL, "format" varchar(255) NOT NULL, "serialized_data" text NOT NULL, "object_repr" text NOT NULL, "content_type_id" integer NOT NULL, "revision_id" integer NOT NULL); (params None)
(0.121) CREATE TABLE "reversion_version" ("id" serial NOT NULL PRIMARY KEY, "object_id" text NOT NULL, "object_id_int" integer NULL, "format" varchar(255) NOT NULL, "serialized_data" text NOT NULL, "object_repr" text NOT NULL, "content_type_id" integer NOT NULL, "revision_id" integer NOT NULL); args=None
ALTER TABLE "reversion_revision" ADD CONSTRAINT "reversion_revision_user_id_17095f45_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.008) ALTER TABLE "reversion_revision" ADD CONSTRAINT "reversion_revision_user_id_17095f45_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "reversion_revision_b16b0f06" ON "reversion_revision" ("manager_slug"); (params [])
(0.061) CREATE INDEX "reversion_revision_b16b0f06" ON "reversion_revision" ("manager_slug"); args=[]
CREATE INDEX "reversion_revision_c69e55a4" ON "reversion_revision" ("date_created"); (params [])
(0.041) CREATE INDEX "reversion_revision_c69e55a4" ON "reversion_revision" ("date_created"); args=[]
CREATE INDEX "reversion_revision_e8701ad4" ON "reversion_revision" ("user_id"); (params [])
(0.041) CREATE INDEX "reversion_revision_e8701ad4" ON "reversion_revision" ("user_id"); args=[]
CREATE INDEX "reversion_revision_manager_slug_388da6fe_like" ON "reversion_revision" ("manager_slug" varchar_pattern_ops); (params [])
(0.091) CREATE INDEX "reversion_revision_manager_slug_388da6fe_like" ON "reversion_revision" ("manager_slug" varchar_pattern_ops); args=[]
ALTER TABLE "reversion_version" ADD CONSTRAINT "reversion_ve_content_type_id_7d0ff25c_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.006) ALTER TABLE "reversion_version" ADD CONSTRAINT "reversion_ve_content_type_id_7d0ff25c_fk_django_content_type_id" FOREIGN KEY ("content_type_id") REFERENCES "django_content_type" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "reversion_version" ADD CONSTRAINT "reversion_version_revision_id_af9f6a9d_fk_reversion_revision_id" FOREIGN KEY ("revision_id") REFERENCES "reversion_revision" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "reversion_version" ADD CONSTRAINT "reversion_version_revision_id_af9f6a9d_fk_reversion_revision_id" FOREIGN KEY ("revision_id") REFERENCES "reversion_revision" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "reversion_version_0c9ba3a3" ON "reversion_version" ("object_id_int"); (params [])
(0.057) CREATE INDEX "reversion_version_0c9ba3a3" ON "reversion_version" ("object_id_int"); args=[]
CREATE INDEX "reversion_version_417f1b1c" ON "reversion_version" ("content_type_id"); (params [])
(0.085) CREATE INDEX "reversion_version_417f1b1c" ON "reversion_version" ("content_type_id"); args=[]
CREATE INDEX "reversion_version_5de09a8d" ON "reversion_version" ("revision_id"); (params [])
(0.055) CREATE INDEX "reversion_version_5de09a8d" ON "reversion_version" ("revision_id"); args=[]
(0.014)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('reversion', '0001_initial', '2017-08-15T19:13:50.499688+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('reversion', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 50, 499688, tzinfo=<UTC>))
ALTER TABLE "reversion_revision" ALTER COLUMN "manager_slug" TYPE varchar(191) USING "manager_slug"::varchar(191); (params [])
(0.515) ALTER TABLE "reversion_revision" ALTER COLUMN "manager_slug" TYPE varchar(191) USING "manager_slug"::varchar(191); args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('reversion', '0002_auto_20141216_1509', '2017-08-15T19:13:51.659675+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('reversion', '0002_auto_20141216_1509', datetime.datetime(2017, 8, 15, 19, 13, 51, 659675, tzinfo=<UTC>))
CREATE TABLE "django_session" ("session_key" varchar(40) NOT NULL PRIMARY KEY, "session_data" text NOT NULL, "expire_date" timestamp with time zone NOT NULL); (params None)
(0.102) CREATE TABLE "django_session" ("session_key" varchar(40) NOT NULL PRIMARY KEY, "session_data" text NOT NULL, "expire_date" timestamp with time zone NOT NULL); args=None
CREATE INDEX "django_session_de54fa62" ON "django_session" ("expire_date"); (params [])
(0.040) CREATE INDEX "django_session_de54fa62" ON "django_session" ("expire_date"); args=[]
CREATE INDEX "django_session_session_key_c0390e0f_like" ON "django_session" ("session_key" varchar_pattern_ops); (params [])
(0.045) CREATE INDEX "django_session_session_key_c0390e0f_like" ON "django_session" ("session_key" varchar_pattern_ops); args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('sessions', '0001_initial', '2017-08-15T19:13:51.911261+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('sessions', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 51, 911261, tzinfo=<UTC>))
CREATE TABLE "stored_messages_inbox" ("id" serial NOT NULL PRIMARY KEY); (params None)
(0.051) CREATE TABLE "stored_messages_inbox" ("id" serial NOT NULL PRIMARY KEY); args=None
CREATE TABLE "stored_messages_message" ("id" serial NOT NULL PRIMARY KEY, "message" text NOT NULL, "level" integer NOT NULL, "tags" text NOT NULL, "date" timestamp with time zone NOT NULL); (params None)
(0.131) CREATE TABLE "stored_messages_message" ("id" serial NOT NULL PRIMARY KEY, "message" text NOT NULL, "level" integer NOT NULL, "tags" text NOT NULL, "date" timestamp with time zone NOT NULL); args=None
CREATE TABLE "stored_messages_messagearchive" ("id" serial NOT NULL PRIMARY KEY, "message_id" integer NOT NULL, "user_id" integer NOT NULL); (params None)
(0.059) CREATE TABLE "stored_messages_messagearchive" ("id" serial NOT NULL PRIMARY KEY, "message_id" integer NOT NULL, "user_id" integer NOT NULL); args=None
ALTER TABLE "stored_messages_inbox" ADD COLUMN "message_id" integer NOT NULL; (params [])
(0.003) ALTER TABLE "stored_messages_inbox" ADD COLUMN "message_id" integer NOT NULL; args=[]
ALTER TABLE "stored_messages_inbox" ALTER COLUMN "message_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "stored_messages_inbox" ALTER COLUMN "message_id" DROP DEFAULT; args=[]
ALTER TABLE "stored_messages_inbox" ADD COLUMN "user_id" integer NOT NULL; (params [])
(0.002) ALTER TABLE "stored_messages_inbox" ADD COLUMN "user_id" integer NOT NULL; args=[]
ALTER TABLE "stored_messages_inbox" ALTER COLUMN "user_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "stored_messages_inbox" ALTER COLUMN "user_id" DROP DEFAULT; args=[]
ALTER TABLE "stored_messages_messagearchive" ADD CONSTRAINT "stored_messag_message_id_5c434ae3_fk_stored_messages_message_id" FOREIGN KEY ("message_id") REFERENCES "stored_messages_message" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.012) ALTER TABLE "stored_messages_messagearchive" ADD CONSTRAINT "stored_messag_message_id_5c434ae3_fk_stored_messages_message_id" FOREIGN KEY ("message_id") REFERENCES "stored_messages_message" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "stored_messages_messagearchive" ADD CONSTRAINT "stored_messages_me_user_id_57faf009_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.007) ALTER TABLE "stored_messages_messagearchive" ADD CONSTRAINT "stored_messages_me_user_id_57faf009_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "stored_messages_messagearchive_4ccaa172" ON "stored_messages_messagearchive" ("message_id"); (params [])
(0.060) CREATE INDEX "stored_messages_messagearchive_4ccaa172" ON "stored_messages_messagearchive" ("message_id"); args=[]
CREATE INDEX "stored_messages_messagearchive_e8701ad4" ON "stored_messages_messagearchive" ("user_id"); (params [])
(0.038) CREATE INDEX "stored_messages_messagearchive_e8701ad4" ON "stored_messages_messagearchive" ("user_id"); args=[]
CREATE INDEX "stored_messages_inbox_4ccaa172" ON "stored_messages_inbox" ("message_id"); (params [])
(0.061) CREATE INDEX "stored_messages_inbox_4ccaa172" ON "stored_messages_inbox" ("message_id"); args=[]
ALTER TABLE "stored_messages_inbox" ADD CONSTRAINT "stored_messag_message_id_29e83d86_fk_stored_messages_message_id" FOREIGN KEY ("message_id") REFERENCES "stored_messages_message" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "stored_messages_inbox" ADD CONSTRAINT "stored_messag_message_id_29e83d86_fk_stored_messages_message_id" FOREIGN KEY ("message_id") REFERENCES "stored_messages_message" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
CREATE INDEX "stored_messages_inbox_e8701ad4" ON "stored_messages_inbox" ("user_id"); (params [])
(0.055) CREATE INDEX "stored_messages_inbox_e8701ad4" ON "stored_messages_inbox" ("user_id"); args=[]
ALTER TABLE "stored_messages_inbox" ADD CONSTRAINT "stored_messages_in_user_id_0fb988d9_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.009) ALTER TABLE "stored_messages_inbox" ADD CONSTRAINT "stored_messages_in_user_id_0fb988d9_fk_membership_customuser_id" FOREIGN KEY ("user_id") REFERENCES "membership_customuser" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.022)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('stored_messages', '0001_initial', '2017-08-15T19:13:55.049445+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('stored_messages', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 55, 49445, tzinfo=<UTC>))
ALTER TABLE "stored_messages_message" ADD COLUMN "url" varchar(200) NULL; (params [])
(0.002) ALTER TABLE "stored_messages_message" ADD COLUMN "url" varchar(200) NULL; args=[]
ALTER TABLE "stored_messages_message" ALTER COLUMN "url" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "stored_messages_message" ALTER COLUMN "url" DROP DEFAULT; args=[]
(0.003)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('stored_messages', '0002_message_url', '2017-08-15T19:13:55.792025+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('stored_messages', '0002_message_url', datetime.datetime(2017, 8, 15, 19, 13, 55, 792025, tzinfo=<UTC>))
CREATE TABLE "ungleich_ungleichpage" ("id" serial NOT NULL PRIMARY KEY, "image_header" varchar(100) NOT NULL, "extended_object_id" integer NOT NULL UNIQUE, "public_extension_id" integer NULL UNIQUE); (params None)
(0.159) CREATE TABLE "ungleich_ungleichpage" ("id" serial NOT NULL PRIMARY KEY, "image_header" varchar(100) NOT NULL, "extended_object_id" integer NOT NULL UNIQUE, "public_extension_id" integer NULL UNIQUE); args=None
ALTER TABLE "ungleich_ungleichpage" ADD CONSTRAINT "ungleich_ungleichpag_extended_object_id_c1ef9374_fk_cms_page_id" FOREIGN KEY ("extended_object_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "ungleich_ungleichpage" ADD CONSTRAINT "ungleich_ungleichpag_extended_object_id_c1ef9374_fk_cms_page_id" FOREIGN KEY ("extended_object_id") REFERENCES "cms_page" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
ALTER TABLE "ungleich_ungleichpage" ADD CONSTRAINT "unglei_public_extension_id_3d10d43b_fk_ungleich_ungleichpage_id" FOREIGN KEY ("public_extension_id") REFERENCES "ungleich_ungleichpage" ("id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.004) ALTER TABLE "ungleich_ungleichpage" ADD CONSTRAINT "unglei_public_extension_id_3d10d43b_fk_ungleich_ungleichpage_id" FOREIGN KEY ("public_extension_id") REFERENCES "ungleich_ungleichpage" ("id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.008)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('ungleich', '0001_initial', '2017-08-15T19:13:56.688456+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('ungleich', '0001_initial', datetime.datetime(2017, 8, 15, 19, 13, 56, 688456, tzinfo=<UTC>))
ALTER TABLE "ungleich_ungleichpage" ADD COLUMN "image_id" integer NULL; (params [])
(0.002) ALTER TABLE "ungleich_ungleichpage" ADD COLUMN "image_id" integer NULL; args=[]
ALTER TABLE "ungleich_ungleichpage" ALTER COLUMN "image_id" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "ungleich_ungleichpage" ALTER COLUMN "image_id" DROP DEFAULT; args=[]
CREATE INDEX "ungleich_ungleichpage_f33175e6" ON "ungleich_ungleichpage" ("image_id"); (params [])
(0.046) CREATE INDEX "ungleich_ungleichpage_f33175e6" ON "ungleich_ungleichpage" ("image_id"); args=[]
ALTER TABLE "ungleich_ungleichpage" ADD CONSTRAINT "ungleich_ungleichp_image_id_ead0a708_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; (params [])
(0.010) ALTER TABLE "ungleich_ungleichpage" ADD CONSTRAINT "ungleich_ungleichp_image_id_ead0a708_fk_filer_image_file_ptr_id" FOREIGN KEY ("image_id") REFERENCES "filer_image" ("file_ptr_id") DEFERRABLE INITIALLY DEFERRED; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('ungleich', '0002_ungleichpage_image', '2017-08-15T19:13:57.370257+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('ungleich', '0002_ungleichpage_image', datetime.datetime(2017, 8, 15, 19, 13, 57, 370257, tzinfo=<UTC>))
ALTER TABLE "ungleich_ungleichpage" DROP COLUMN "image_header" CASCADE; (params [])
(0.001) ALTER TABLE "ungleich_ungleichpage" DROP COLUMN "image_header" CASCADE; args=[]
(0.005)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('ungleich', '0003_remove_ungleichpage_image_header', '2017-08-15T19:13:58.034688+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('ungleich', '0003_remove_ungleichpage_image_header', datetime.datetime(2017, 8, 15, 19, 13, 58, 34688, tzinfo=<UTC>))
ALTER TABLE "utils_billingaddress" ADD COLUMN "cardholder_name" varchar(100) DEFAULT %s NOT NULL; (params [''])
(0.062) ALTER TABLE "utils_billingaddress" ADD COLUMN "cardholder_name" varchar(100) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "utils_billingaddress" ALTER COLUMN "cardholder_name" DROP DEFAULT; (params [])
(0.001) ALTER TABLE "utils_billingaddress" ALTER COLUMN "cardholder_name" DROP DEFAULT; args=[]
ALTER TABLE "utils_userbillingaddress" ADD COLUMN "cardholder_name" varchar(100) DEFAULT %s NOT NULL; (params [''])
(0.328) ALTER TABLE "utils_userbillingaddress" ADD COLUMN "cardholder_name" varchar(100) DEFAULT '' NOT NULL; args=['']
ALTER TABLE "utils_userbillingaddress" ALTER COLUMN "cardholder_name" DROP DEFAULT; (params [])
(0.002) ALTER TABLE "utils_userbillingaddress" ALTER COLUMN "cardholder_name" DROP DEFAULT; args=[]
(0.004)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) INSERT INTO "django_migrations" ("app", "name", "applied") VALUES ('utils', '0006_auto_20170810_1742', '2017-08-15T19:14:00.070076+00:00'::timestamptz) RETURNING "django_migrations"."id"; args=('utils', '0006_auto_20170810_1742', datetime.datetime(2017, 8, 15, 19, 14, 0, 70076, tzinfo=<UTC>))
(0.006)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'customuser' AND "django_content_type"."app_label" = 'membership'); args=('customuser', 'membership')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'customuser' AND "django_content_type"."app_label" = 'membership'); args=('customuser', 'membership')
(0.003) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('membership', 'customuser') RETURNING "django_content_type"."id"; args=('membership', 'customuser')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'stripecustomer' AND "django_content_type"."app_label" = 'membership'); args=('stripecustomer', 'membership')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'stripecustomer' AND "django_content_type"."app_label" = 'membership'); args=('stripecustomer', 'membership')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('membership', 'stripecustomer') RETURNING "django_content_type"."id"; args=('membership', 'stripecustomer')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'creditcards' AND "django_content_type"."app_label" = 'membership'); args=('creditcards', 'membership')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'creditcards' AND "django_content_type"."app_label" = 'membership'); args=('creditcards', 'membership')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('membership', 'creditcards') RETURNING "django_content_type"."id"; args=('membership', 'creditcards')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'calendar' AND "django_content_type"."app_label" = 'membership'); args=('calendar', 'membership')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'calendar' AND "django_content_type"."app_label" = 'membership'); args=('calendar', 'membership')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('membership', 'calendar') RETURNING "django_content_type"."id"; args=('membership', 'calendar')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (4, 5, 6, 7) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(4, 5, 6, 7)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add custom user', 4, 'add_customuser'), ('Can change custom user', 4, 'change_customuser'), ('Can delete custom user', 4, 'delete_customuser'), ('Can add stripe customer', 5, 'add_stripecustomer'), ('Can change stripe customer', 5, 'change_stripecustomer'), ('Can delete stripe customer', 5, 'delete_stripecustomer'), ('Can add credit cards', 6, 'add_creditcards'), ('Can change credit cards', 6, 'change_creditcards'), ('Can delete credit cards', 6, 'delete_creditcards'), ('Can add calendar', 7, 'add_calendar'), ('Can change calendar', 7, 'change_calendar'), ('Can delete calendar', 7, 'delete_calendar'); args=('Can add custom user', 4, 'add_customuser', 'Can change custom user', 4, 'change_customuser', 'Can delete custom user', 4, 'delete_customuser', 'Can add stripe customer', 5, 'add_stripecustomer', 'Can change stripe customer', 5, 'change_stripecustomer', 'Can delete stripe customer', 5, 'delete_stripecustomer', 'Can add credit cards', 6, 'add_creditcards', 'Can change credit cards', 6, 'change_creditcards', 'Can delete credit cards', 6, 'delete_creditcards', 'Can add calendar', 7, 'add_calendar', 'Can change calendar', 7, 'change_calendar', 'Can delete calendar', 7, 'delete_calendar')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'membership'; args=('membership',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'logentry' AND "django_content_type"."app_label" = 'admin'); args=('logentry', 'admin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'logentry' AND "django_content_type"."app_label" = 'admin'); args=('logentry', 'admin')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('admin', 'logentry') RETURNING "django_content_type"."id"; args=('admin', 'logentry')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (8) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(8,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add log entry', 8, 'add_logentry'), ('Can change log entry', 8, 'change_logentry'), ('Can delete log entry', 8, 'delete_logentry'); args=('Can add log entry', 8, 'add_logentry', 'Can change log entry', 8, 'change_logentry', 'Can delete log entry', 8, 'delete_logentry')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'admin'; args=('admin',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'permission' AND "django_content_type"."app_label" = 'auth'); args=('permission', 'auth')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'permission' AND "django_content_type"."app_label" = 'auth'); args=('permission', 'auth')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('auth', 'permission') RETURNING "django_content_type"."id"; args=('auth', 'permission')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'group' AND "django_content_type"."app_label" = 'auth'); args=('group', 'auth')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'group' AND "django_content_type"."app_label" = 'auth'); args=('group', 'auth')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('auth', 'group') RETURNING "django_content_type"."id"; args=('auth', 'group')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (9, 10) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(9, 10)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add permission', 9, 'add_permission'), ('Can change permission', 9, 'change_permission'), ('Can delete permission', 9, 'delete_permission'), ('Can add group', 10, 'add_group'), ('Can change group', 10, 'change_group'), ('Can delete group', 10, 'delete_group'); args=('Can add permission', 9, 'add_permission', 'Can change permission', 9, 'change_permission', 'Can delete permission', 9, 'delete_permission', 'Can add group', 10, 'add_group', 'Can change group', 10, 'change_group', 'Can delete group', 10, 'delete_group')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'auth'; args=('auth',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'contenttype' AND "django_content_type"."app_label" = 'contenttypes'); args=('contenttype', 'contenttypes')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'contenttype' AND "django_content_type"."app_label" = 'contenttypes'); args=('contenttype', 'contenttypes')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('contenttypes', 'contenttype') RETURNING "django_content_type"."id"; args=('contenttypes', 'contenttype')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (11) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(11,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add content type', 11, 'add_contenttype'), ('Can change content type', 11, 'change_contenttype'), ('Can delete content type', 11, 'delete_contenttype'); args=('Can add content type', 11, 'add_contenttype', 'Can change content type', 11, 'change_contenttype', 'Can delete content type', 11, 'delete_contenttype')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'contenttypes'; args=('contenttypes',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'session' AND "django_content_type"."app_label" = 'sessions'); args=('session', 'sessions')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'session' AND "django_content_type"."app_label" = 'sessions'); args=('session', 'sessions')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('sessions', 'session') RETURNING "django_content_type"."id"; args=('sessions', 'session')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (12) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(12,)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add session', 12, 'add_session'), ('Can change session', 12, 'change_session'), ('Can delete session', 12, 'delete_session'); args=('Can add session', 12, 'add_session', 'Can change session', 12, 'change_session', 'Can delete session', 12, 'delete_session')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'sessions'; args=('sessions',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'site' AND "django_content_type"."app_label" = 'sites'); args=('site', 'sites')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'site' AND "django_content_type"."app_label" = 'sites'); args=('site', 'sites')
(0.003) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('sites', 'site') RETURNING "django_content_type"."id"; args=('sites', 'site')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (13) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(13,)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add site', 13, 'add_site'), ('Can change site', 13, 'change_site'), ('Can delete site', 13, 'delete_site'); args=('Can add site', 13, 'add_site', 'Can change site', 13, 'change_site', 'Can delete site', 13, 'delete_site')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'sites'; args=('sites',)
(0.002) SELECT (1) AS "a" FROM "django_site" LIMIT 1; args=()
(0.002) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.003) UPDATE "django_site" SET "domain" = 'example.com', "name" = 'example.com' WHERE "django_site"."id" = 1; args=('example.com', 'example.com', 1)
(0.006) INSERT INTO "django_site" ("id", "domain", "name") VALUES (1, 'example.com', 'example.com'); args=(1, 'example.com', 'example.com')
(0.012) SELECT setval(pg_get_serial_sequence('"django_site"','id'), coalesce(max("id"), 1), max("id") IS NOT null) FROM "django_site";; args=None
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'source' AND "django_content_type"."app_label" = 'easy_thumbnails'); args=('source', 'easy_thumbnails')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'source' AND "django_content_type"."app_label" = 'easy_thumbnails'); args=('source', 'easy_thumbnails')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('easy_thumbnails', 'source') RETURNING "django_content_type"."id"; args=('easy_thumbnails', 'source')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnail' AND "django_content_type"."app_label" = 'easy_thumbnails'); args=('thumbnail', 'easy_thumbnails')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnail' AND "django_content_type"."app_label" = 'easy_thumbnails'); args=('thumbnail', 'easy_thumbnails')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('easy_thumbnails', 'thumbnail') RETURNING "django_content_type"."id"; args=('easy_thumbnails', 'thumbnail')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnaildimensions' AND "django_content_type"."app_label" = 'easy_thumbnails'); args=('thumbnaildimensions', 'easy_thumbnails')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnaildimensions' AND "django_content_type"."app_label" = 'easy_thumbnails'); args=('thumbnaildimensions', 'easy_thumbnails')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('easy_thumbnails', 'thumbnaildimensions') RETURNING "django_content_type"."id"; args=('easy_thumbnails', 'thumbnaildimensions')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (16, 14, 15) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(16, 14, 15)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add source', 14, 'add_source'), ('Can change source', 14, 'change_source'), ('Can delete source', 14, 'delete_source'), ('Can add thumbnail', 15, 'add_thumbnail'), ('Can change thumbnail', 15, 'change_thumbnail'), ('Can delete thumbnail', 15, 'delete_thumbnail'), ('Can add thumbnail dimensions', 16, 'add_thumbnaildimensions'), ('Can change thumbnail dimensions', 16, 'change_thumbnaildimensions'), ('Can delete thumbnail dimensions', 16, 'delete_thumbnaildimensions'); args=('Can add source', 14, 'add_source', 'Can change source', 14, 'change_source', 'Can delete source', 14, 'delete_source', 'Can add thumbnail', 15, 'add_thumbnail', 'Can change thumbnail', 15, 'change_thumbnail', 'Can delete thumbnail', 15, 'delete_thumbnail', 'Can add thumbnail dimensions', 16, 'add_thumbnaildimensions', 'Can change thumbnail dimensions', 16, 'change_thumbnaildimensions', 'Can delete thumbnail dimensions', 16, 'delete_thumbnaildimensions')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'easy_thumbnails'; args=('easy_thumbnails',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'billingaddress' AND "django_content_type"."app_label" = 'utils'); args=('billingaddress', 'utils')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'billingaddress' AND "django_content_type"."app_label" = 'utils'); args=('billingaddress', 'utils')
(0.003) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('utils', 'billingaddress') RETURNING "django_content_type"."id"; args=('utils', 'billingaddress')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'userbillingaddress' AND "django_content_type"."app_label" = 'utils'); args=('userbillingaddress', 'utils')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'userbillingaddress' AND "django_content_type"."app_label" = 'utils'); args=('userbillingaddress', 'utils')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('utils', 'userbillingaddress') RETURNING "django_content_type"."id"; args=('utils', 'userbillingaddress')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'contactmessage' AND "django_content_type"."app_label" = 'utils'); args=('contactmessage', 'utils')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'contactmessage' AND "django_content_type"."app_label" = 'utils'); args=('contactmessage', 'utils')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('utils', 'contactmessage') RETURNING "django_content_type"."id"; args=('utils', 'contactmessage')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (17, 18, 19) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(17, 18, 19)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add billing address', 17, 'add_billingaddress'), ('Can change billing address', 17, 'change_billingaddress'), ('Can delete billing address', 17, 'delete_billingaddress'), ('Can add user billing address', 18, 'add_userbillingaddress'), ('Can change user billing address', 18, 'change_userbillingaddress'), ('Can delete user billing address', 18, 'delete_userbillingaddress'), ('Can add contact message', 19, 'add_contactmessage'), ('Can change contact message', 19, 'change_contactmessage'), ('Can delete contact message', 19, 'delete_contactmessage'); args=('Can add billing address', 17, 'add_billingaddress', 'Can change billing address', 17, 'change_billingaddress', 'Can delete billing address', 17, 'delete_billingaddress', 'Can add user billing address', 18, 'add_userbillingaddress', 'Can change user billing address', 18, 'change_userbillingaddress', 'Can delete user billing address', 18, 'delete_userbillingaddress', 'Can add contact message', 19, 'add_contactmessage', 'Can change contact message', 19, 'change_contactmessage', 'Can delete contact message', 19, 'delete_contactmessage')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'utils'; args=('utils',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'message' AND "django_content_type"."app_label" = 'stored_messages'); args=('message', 'stored_messages')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'message' AND "django_content_type"."app_label" = 'stored_messages'); args=('message', 'stored_messages')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('stored_messages', 'message') RETURNING "django_content_type"."id"; args=('stored_messages', 'message')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'messagearchive' AND "django_content_type"."app_label" = 'stored_messages'); args=('messagearchive', 'stored_messages')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'messagearchive' AND "django_content_type"."app_label" = 'stored_messages'); args=('messagearchive', 'stored_messages')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('stored_messages', 'messagearchive') RETURNING "django_content_type"."id"; args=('stored_messages', 'messagearchive')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'inbox' AND "django_content_type"."app_label" = 'stored_messages'); args=('inbox', 'stored_messages')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'inbox' AND "django_content_type"."app_label" = 'stored_messages'); args=('inbox', 'stored_messages')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('stored_messages', 'inbox') RETURNING "django_content_type"."id"; args=('stored_messages', 'inbox')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (20, 21, 22) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(20, 21, 22)
(0.004) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add message', 20, 'add_message'), ('Can change message', 20, 'change_message'), ('Can delete message', 20, 'delete_message'), ('Can add message archive', 21, 'add_messagearchive'), ('Can change message archive', 21, 'change_messagearchive'), ('Can delete message archive', 21, 'delete_messagearchive'), ('Can add inbox', 22, 'add_inbox'), ('Can change inbox', 22, 'change_inbox'), ('Can delete inbox', 22, 'delete_inbox'); args=('Can add message', 20, 'add_message', 'Can change message', 20, 'change_message', 'Can delete message', 20, 'delete_message', 'Can add message archive', 21, 'add_messagearchive', 'Can change message archive', 21, 'change_messagearchive', 'Can delete message archive', 21, 'delete_messagearchive', 'Can add inbox', 22, 'add_inbox', 'Can change inbox', 22, 'change_inbox', 'Can delete inbox', 22, 'delete_inbox')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'stored_messages'; args=('stored_messages',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'userobjectpermission' AND "django_content_type"."app_label" = 'guardian'); args=('userobjectpermission', 'guardian')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'userobjectpermission' AND "django_content_type"."app_label" = 'guardian'); args=('userobjectpermission', 'guardian')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('guardian', 'userobjectpermission') RETURNING "django_content_type"."id"; args=('guardian', 'userobjectpermission')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'groupobjectpermission' AND "django_content_type"."app_label" = 'guardian'); args=('groupobjectpermission', 'guardian')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'groupobjectpermission' AND "django_content_type"."app_label" = 'guardian'); args=('groupobjectpermission', 'guardian')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('guardian', 'groupobjectpermission') RETURNING "django_content_type"."id"; args=('guardian', 'groupobjectpermission')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (24, 23) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(24, 23)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add user object permission', 23, 'add_userobjectpermission'), ('Can change user object permission', 23, 'change_userobjectpermission'), ('Can delete user object permission', 23, 'delete_userobjectpermission'), ('Can add group object permission', 24, 'add_groupobjectpermission'), ('Can change group object permission', 24, 'change_groupobjectpermission'), ('Can delete group object permission', 24, 'delete_groupobjectpermission'); args=('Can add user object permission', 23, 'add_userobjectpermission', 'Can change user object permission', 23, 'change_userobjectpermission', 'Can delete user object permission', 23, 'delete_userobjectpermission', 'Can add group object permission', 24, 'add_groupobjectpermission', 'Can change group object permission', 24, 'change_groupobjectpermission', 'Can delete group object permission', 24, 'delete_groupobjectpermission')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'guardian'; args=('guardian',)
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'anonymous@ungleich.ch'; args=('anonymous@ungleich.ch',)
(0.099) INSERT INTO "membership_customuser" ("password", "last_login", "is_superuser", "site_id", "name", "email", "validated", "validation_slug", "is_admin") VALUES ('', NULL, false, 1, 'Anonymous', 'anonymous@ungleich.ch', 0, '!Jq6vO4mG2F9rf7WJMJXka9Jxd7pA2gBtTvAzQDcT', false) RETURNING "membership_customuser"."id"; args=('', None, False, 1, 'Anonymous', 'anonymous@ungleich.ch', 0, '!Jq6vO4mG2F9rf7WJMJXka9Jxd7pA2gBtTvAzQDcT', False)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'tag' AND "django_content_type"."app_label" = 'taggit'); args=('tag', 'taggit')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'tag' AND "django_content_type"."app_label" = 'taggit'); args=('tag', 'taggit')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('taggit', 'tag') RETURNING "django_content_type"."id"; args=('taggit', 'tag')
(0.003) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'taggeditem' AND "django_content_type"."app_label" = 'taggit'); args=('taggeditem', 'taggit')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'taggeditem' AND "django_content_type"."app_label" = 'taggit'); args=('taggeditem', 'taggit')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('taggit', 'taggeditem') RETURNING "django_content_type"."id"; args=('taggit', 'taggeditem')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (25, 26) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(25, 26)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add Tag', 25, 'add_tag'), ('Can change Tag', 25, 'change_tag'), ('Can delete Tag', 25, 'delete_tag'), ('Can add Tagged Item', 26, 'add_taggeditem'), ('Can change Tagged Item', 26, 'change_taggeditem'), ('Can delete Tagged Item', 26, 'delete_taggeditem'); args=('Can add Tag', 25, 'add_tag', 'Can change Tag', 25, 'change_tag', 'Can delete Tag', 25, 'delete_tag', 'Can add Tagged Item', 26, 'add_taggeditem', 'Can change Tagged Item', 26, 'change_taggeditem', 'Can delete Tagged Item', 26, 'delete_taggeditem')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'taggit'; args=('taggit',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'folder' AND "django_content_type"."app_label" = 'filer'); args=('folder', 'filer')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'folder' AND "django_content_type"."app_label" = 'filer'); args=('folder', 'filer')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('filer', 'folder') RETURNING "django_content_type"."id"; args=('filer', 'folder')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'folderpermission' AND "django_content_type"."app_label" = 'filer'); args=('folderpermission', 'filer')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'folderpermission' AND "django_content_type"."app_label" = 'filer'); args=('folderpermission', 'filer')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('filer', 'folderpermission') RETURNING "django_content_type"."id"; args=('filer', 'folderpermission')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'file' AND "django_content_type"."app_label" = 'filer'); args=('file', 'filer')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'file' AND "django_content_type"."app_label" = 'filer'); args=('file', 'filer')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('filer', 'file') RETURNING "django_content_type"."id"; args=('filer', 'file')
(0.003) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'clipboard' AND "django_content_type"."app_label" = 'filer'); args=('clipboard', 'filer')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'clipboard' AND "django_content_type"."app_label" = 'filer'); args=('clipboard', 'filer')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('filer', 'clipboard') RETURNING "django_content_type"."id"; args=('filer', 'clipboard')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'clipboarditem' AND "django_content_type"."app_label" = 'filer'); args=('clipboarditem', 'filer')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'clipboarditem' AND "django_content_type"."app_label" = 'filer'); args=('clipboarditem', 'filer')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('filer', 'clipboarditem') RETURNING "django_content_type"."id"; args=('filer', 'clipboarditem')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'image' AND "django_content_type"."app_label" = 'filer'); args=('image', 'filer')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'image' AND "django_content_type"."app_label" = 'filer'); args=('image', 'filer')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('filer', 'image') RETURNING "django_content_type"."id"; args=('filer', 'image')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnailoption' AND "django_content_type"."app_label" = 'filer'); args=('thumbnailoption', 'filer')
(0.003) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnailoption' AND "django_content_type"."app_label" = 'filer'); args=('thumbnailoption', 'filer')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('filer', 'thumbnailoption') RETURNING "django_content_type"."id"; args=('filer', 'thumbnailoption')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (32, 33, 27, 28, 29, 30, 31) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(32, 33, 27, 28, 29, 30, 31)
(0.004) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add Folder', 27, 'add_folder'), ('Can change Folder', 27, 'change_folder'), ('Can delete Folder', 27, 'delete_folder'), ('Can use directory listing', 27, 'can_use_directory_listing'), ('Can add folder permission', 28, 'add_folderpermission'), ('Can change folder permission', 28, 'change_folderpermission'), ('Can delete folder permission', 28, 'delete_folderpermission'), ('Can add file', 29, 'add_file'), ('Can change file', 29, 'change_file'), ('Can delete file', 29, 'delete_file'), ('Can add clipboard', 30, 'add_clipboard'), ('Can change clipboard', 30, 'change_clipboard'), ('Can delete clipboard', 30, 'delete_clipboard'), ('Can add clipboard item', 31, 'add_clipboarditem'), ('Can change clipboard item', 31, 'change_clipboarditem'), ('Can delete clipboard item', 31, 'delete_clipboarditem'), ('Can add image', 32, 'add_image'), ('Can change image', 32, 'change_image'), ('Can delete image', 32, 'delete_image'), ('Can add thumbnail option', 33, 'add_thumbnailoption'), ('Can change thumbnail option', 33, 'change_thumbnailoption'), ('Can delete thumbnail option', 33, 'delete_thumbnailoption'); args=('Can add Folder', 27, 'add_folder', 'Can change Folder', 27, 'change_folder', 'Can delete Folder', 27, 'delete_folder', 'Can use directory listing', 27, 'can_use_directory_listing', 'Can add folder permission', 28, 'add_folderpermission', 'Can change folder permission', 28, 'change_folderpermission', 'Can delete folder permission', 28, 'delete_folderpermission', 'Can add file', 29, 'add_file', 'Can change file', 29, 'change_file', 'Can delete file', 29, 'delete_file', 'Can add clipboard', 30, 'add_clipboard', 'Can change clipboard', 30, 'change_clipboard', 'Can delete clipboard', 30, 'delete_clipboard', 'Can add clipboard item', 31, 'add_clipboarditem', 'Can change clipboard item', 31, 'change_clipboarditem', 'Can delete clipboard item', 31, 'delete_clipboarditem', 'Can add image', 32, 'add_image', 'Can change image', 32, 'change_image', 'Can delete image', 32, 'delete_image', 'Can add thumbnail option', 33, 'add_thumbnailoption', 'Can change thumbnail option', 33, 'change_thumbnailoption', 'Can delete thumbnail option', 33, 'delete_thumbnailoption')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'filer'; args=('filer',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogconfigtranslation' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogconfigtranslation', 'djangocms_blog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogconfigtranslation' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogconfigtranslation', 'djangocms_blog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'blogconfigtranslation') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'blogconfigtranslation')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogconfig' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogconfig', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogconfig' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogconfig', 'djangocms_blog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'blogconfig') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'blogconfig')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogcategorytranslation' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogcategorytranslation', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogcategorytranslation' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogcategorytranslation', 'djangocms_blog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'blogcategorytranslation') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'blogcategorytranslation')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogcategory' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogcategory', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'blogcategory' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('blogcategory', 'djangocms_blog')
(0.003) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'blogcategory') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'blogcategory')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'posttranslation' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('posttranslation', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'posttranslation' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('posttranslation', 'djangocms_blog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'posttranslation') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'posttranslation')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'post' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('post', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'post' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('post', 'djangocms_blog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'post') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'post')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'latestpostsplugin' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('latestpostsplugin', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'authorentriesplugin' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('authorentriesplugin', 'djangocms_blog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'authorentriesplugin' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('authorentriesplugin', 'djangocms_blog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'authorentriesplugin') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'authorentriesplugin')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'genericblogplugin' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('genericblogplugin', 'djangocms_blog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'genericblogplugin' AND "django_content_type"."app_label" = 'djangocms_blog'); args=('genericblogplugin', 'djangocms_blog')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_blog', 'genericblogplugin') RETURNING "django_content_type"."id"; args=('djangocms_blog', 'genericblogplugin')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (34, 35, 36, 37, 38, 39, 3, 40, 41) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(34, 35, 36, 37, 38, 39, 3, 40, 41)
(0.010) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add blog config', 35, 'add_blogconfig'), ('Can change blog config', 35, 'change_blogconfig'), ('Can delete blog config', 35, 'delete_blogconfig'), ('Can add blog category', 37, 'add_blogcategory'), ('Can change blog category', 37, 'change_blogcategory'), ('Can delete blog category', 37, 'delete_blogcategory'), ('Can add blog article', 39, 'add_post'), ('Can change blog article', 39, 'change_post'), ('Can delete blog article', 39, 'delete_post'), ('Can add latest posts plugin', 3, 'add_latestpostsplugin'), ('Can change latest posts plugin', 3, 'change_latestpostsplugin'), ('Can delete latest posts plugin', 3, 'delete_latestpostsplugin'), ('Can add author entries plugin', 40, 'add_authorentriesplugin'), ('Can change author entries plugin', 40, 'change_authorentriesplugin'), ('Can delete author entries plugin', 40, 'delete_authorentriesplugin'), ('Can add generic blog plugin', 41, 'add_genericblogplugin'), ('Can change generic blog plugin', 41, 'change_genericblogplugin'), ('Can delete generic blog plugin', 41, 'delete_genericblogplugin'); args=('Can add blog config', 35, 'add_blogconfig', 'Can change blog config', 35, 'change_blogconfig', 'Can delete blog config', 35, 'delete_blogconfig', 'Can add blog category', 37, 'add_blogcategory', 'Can change blog category', 37, 'change_blogcategory', 'Can delete blog category', 37, 'delete_blogcategory', 'Can add blog article', 39, 'add_post', 'Can change blog article', 39, 'change_post', 'Can delete blog article', 39, 'delete_post', 'Can add latest posts plugin', 3, 'add_latestpostsplugin', 'Can change latest posts plugin', 3, 'change_latestpostsplugin', 'Can delete latest posts plugin', 3, 'delete_latestpostsplugin', 'Can add author entries plugin', 40, 'add_authorentriesplugin', 'Can change author entries plugin', 40, 'change_authorentriesplugin', 'Can delete author entries plugin', 40, 'delete_authorentriesplugin', 'Can add generic blog plugin', 41, 'add_genericblogplugin', 'Can change generic blog plugin', 41, 'change_genericblogplugin', 'Can delete generic blog plugin', 41, 'delete_genericblogplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'djangocms_blog'; args=('djangocms_blog',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'usersettings' AND "django_content_type"."app_label" = 'cms'); args=('usersettings', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'usersettings' AND "django_content_type"."app_label" = 'cms'); args=('usersettings', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'usersettings') RETURNING "django_content_type"."id"; args=('cms', 'usersettings')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'page' AND "django_content_type"."app_label" = 'cms'); args=('page', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'globalpagepermission' AND "django_content_type"."app_label" = 'cms'); args=('globalpagepermission', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'globalpagepermission' AND "django_content_type"."app_label" = 'cms'); args=('globalpagepermission', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'globalpagepermission') RETURNING "django_content_type"."id"; args=('cms', 'globalpagepermission')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pagepermission' AND "django_content_type"."app_label" = 'cms'); args=('pagepermission', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pagepermission' AND "django_content_type"."app_label" = 'cms'); args=('pagepermission', 'cms')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'pagepermission') RETURNING "django_content_type"."id"; args=('cms', 'pagepermission')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pageuser' AND "django_content_type"."app_label" = 'cms'); args=('pageuser', 'cms')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pageuser' AND "django_content_type"."app_label" = 'cms'); args=('pageuser', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'pageuser') RETURNING "django_content_type"."id"; args=('cms', 'pageuser')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pageusergroup' AND "django_content_type"."app_label" = 'cms'); args=('pageusergroup', 'cms')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pageusergroup' AND "django_content_type"."app_label" = 'cms'); args=('pageusergroup', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'pageusergroup') RETURNING "django_content_type"."id"; args=('cms', 'pageusergroup')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'placeholder' AND "django_content_type"."app_label" = 'cms'); args=('placeholder', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'cmsplugin' AND "django_content_type"."app_label" = 'cms'); args=('cmsplugin', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'cmsplugin' AND "django_content_type"."app_label" = 'cms'); args=('cmsplugin', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'cmsplugin') RETURNING "django_content_type"."id"; args=('cms', 'cmsplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'title' AND "django_content_type"."app_label" = 'cms'); args=('title', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'title' AND "django_content_type"."app_label" = 'cms'); args=('title', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'title') RETURNING "django_content_type"."id"; args=('cms', 'title')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'placeholderreference' AND "django_content_type"."app_label" = 'cms'); args=('placeholderreference', 'cms')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'placeholderreference' AND "django_content_type"."app_label" = 'cms'); args=('placeholderreference', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'placeholderreference') RETURNING "django_content_type"."id"; args=('cms', 'placeholderreference')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'staticplaceholder' AND "django_content_type"."app_label" = 'cms'); args=('staticplaceholder', 'cms')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'staticplaceholder' AND "django_content_type"."app_label" = 'cms'); args=('staticplaceholder', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'staticplaceholder') RETURNING "django_content_type"."id"; args=('cms', 'staticplaceholder')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'aliaspluginmodel' AND "django_content_type"."app_label" = 'cms'); args=('aliaspluginmodel', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'aliaspluginmodel' AND "django_content_type"."app_label" = 'cms'); args=('aliaspluginmodel', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'aliaspluginmodel') RETURNING "django_content_type"."id"; args=('cms', 'aliaspluginmodel')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'urlconfrevision' AND "django_content_type"."app_label" = 'cms'); args=('urlconfrevision', 'cms')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'urlconfrevision' AND "django_content_type"."app_label" = 'cms'); args=('urlconfrevision', 'cms')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cms', 'urlconfrevision') RETURNING "django_content_type"."id"; args=('cms', 'urlconfrevision')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (1, 2, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(1, 2, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52)
(0.007) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add user setting', 42, 'add_usersettings'), ('Can change user setting', 42, 'change_usersettings'), ('Can delete user setting', 42, 'delete_usersettings'), ('Can add page', 2, 'add_page'), ('Can delete page', 2, 'delete_page'), ('Can view page', 2, 'view_page'), ('Can publish page', 2, 'publish_page'), ('Can edit static placeholders', 2, 'edit_static_placeholder'), ('Can add Page global permission', 43, 'add_globalpagepermission'), ('Can change Page global permission', 43, 'change_globalpagepermission'), ('Can delete Page global permission', 43, 'delete_globalpagepermission'), ('Can add Page permission', 44, 'add_pagepermission'), ('Can change Page permission', 44, 'change_pagepermission'), ('Can delete Page permission', 44, 'delete_pagepermission'), ('Can add User (page)', 45, 'add_pageuser'), ('Can change User (page)', 45, 'change_pageuser'), ('Can delete User (page)', 45, 'delete_pageuser'), ('Can add User group (page)', 46, 'add_pageusergroup'), ('Can change User group (page)', 46, 'change_pageusergroup'), ('Can delete User group (page)', 46, 'delete_pageusergroup'), ('Can add placeholder', 1, 'add_placeholder'), ('Can change placeholder', 1, 'change_placeholder'), ('Can delete placeholder', 1, 'delete_placeholder'), ('Can add cms plugin', 47, 'add_cmsplugin'), ('Can change cms plugin', 47, 'change_cmsplugin'), ('Can delete cms plugin', 47, 'delete_cmsplugin'), ('Can add title', 48, 'add_title'), ('Can change title', 48, 'change_title'), ('Can delete title', 48, 'delete_title'), ('Can add placeholder reference', 49, 'add_placeholderreference'), ('Can change placeholder reference', 49, 'change_placeholderreference'), ('Can delete placeholder reference', 49, 'delete_placeholderreference'), ('Can add static placeholder', 50, 'add_staticplaceholder'), ('Can change static placeholder', 50, 'change_staticplaceholder'), ('Can delete static placeholder', 50, 'delete_staticplaceholder'), ('Can add alias plugin model', 51, 'add_aliaspluginmodel'), ('Can change alias plugin model', 51, 'change_aliaspluginmodel'), ('Can delete alias plugin model', 51, 'delete_aliaspluginmodel'), ('Can add urlconf revision', 52, 'add_urlconfrevision'), ('Can change urlconf revision', 52, 'change_urlconfrevision'), ('Can delete urlconf revision', 52, 'delete_urlconfrevision'); args=('Can add user setting', 42, 'add_usersettings', 'Can change user setting', 42, 'change_usersettings', 'Can delete user setting', 42, 'delete_usersettings', 'Can add page', 2, 'add_page', 'Can delete page', 2, 'delete_page', 'Can view page', 2, 'view_page', 'Can publish page', 2, 'publish_page', 'Can edit static placeholders', 2, 'edit_static_placeholder', 'Can add Page global permission', 43, 'add_globalpagepermission', 'Can change Page global permission', 43, 'change_globalpagepermission', 'Can delete Page global permission', 43, 'delete_globalpagepermission', 'Can add Page permission', 44, 'add_pagepermission', 'Can change Page permission', 44, 'change_pagepermission', 'Can delete Page permission', 44, 'delete_pagepermission', 'Can add User (page)', 45, 'add_pageuser', 'Can change User (page)', 45, 'change_pageuser', 'Can delete User (page)', 45, 'delete_pageuser', 'Can add User group (page)', 46, 'add_pageusergroup', 'Can change User group (page)', 46, 'change_pageusergroup', 'Can delete User group (page)', 46, 'delete_pageusergroup', 'Can add placeholder', 1, 'add_placeholder', 'Can change placeholder', 1, 'change_placeholder', 'Can delete placeholder', 1, 'delete_placeholder', 'Can add cms plugin', 47, 'add_cmsplugin', 'Can change cms plugin', 47, 'change_cmsplugin', 'Can delete cms plugin', 47, 'delete_cmsplugin', 'Can add title', 48, 'add_title', 'Can change title', 48, 'change_title', 'Can delete title', 48, 'delete_title', 'Can add placeholder reference', 49, 'add_placeholderreference', 'Can change placeholder reference', 49, 'change_placeholderreference', 'Can delete placeholder reference', 49, 'delete_placeholderreference', 'Can add static placeholder', 50, 'add_staticplaceholder', 'Can change static placeholder', 50, 'change_staticplaceholder', 'Can delete static placeholder', 50, 'delete_staticplaceholder', 'Can add alias plugin model', 51, 'add_aliaspluginmodel', 'Can change alias plugin model', 51, 'change_aliaspluginmodel', 'Can delete alias plugin model', 51, 'delete_aliaspluginmodel', 'Can add urlconf revision', 52, 'add_urlconfrevision', 'Can change urlconf revision', 52, 'change_urlconfrevision', 'Can delete urlconf revision', 52, 'delete_urlconfrevision')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'cms'; args=('cms',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'categorytranslation' AND "django_content_type"."app_label" = 'aldryn_categories'); args=('categorytranslation', 'aldryn_categories')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'categorytranslation' AND "django_content_type"."app_label" = 'aldryn_categories'); args=('categorytranslation', 'aldryn_categories')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_categories', 'categorytranslation') RETURNING "django_content_type"."id"; args=('aldryn_categories', 'categorytranslation')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'category' AND "django_content_type"."app_label" = 'aldryn_categories'); args=('category', 'aldryn_categories')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'category' AND "django_content_type"."app_label" = 'aldryn_categories'); args=('category', 'aldryn_categories')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_categories', 'category') RETURNING "django_content_type"."id"; args=('aldryn_categories', 'category')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (53, 54) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(53, 54)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add category', 54, 'add_category'), ('Can change category', 54, 'change_category'), ('Can delete category', 54, 'delete_category'); args=('Can add category', 54, 'add_category', 'Can change category', 54, 'change_category', 'Can delete category', 54, 'delete_category')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'aldryn_categories'; args=('aldryn_categories',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogconfigtranslation' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogconfigtranslation', 'aldryn_newsblog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogconfigtranslation' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogconfigtranslation', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogconfigtranslation') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogconfigtranslation')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogconfig' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogconfig', 'aldryn_newsblog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogconfig' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogconfig', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogconfig') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogconfig')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'articletranslation' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('articletranslation', 'aldryn_newsblog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'articletranslation' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('articletranslation', 'aldryn_newsblog')
(0.003) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'articletranslation') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'articletranslation')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'article' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('article', 'aldryn_newsblog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'article' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('article', 'aldryn_newsblog')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'article') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'article')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogarchiveplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogarchiveplugin', 'aldryn_newsblog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogarchiveplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogarchiveplugin', 'aldryn_newsblog')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogarchiveplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogarchiveplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogarticlesearchplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogarticlesearchplugin', 'aldryn_newsblog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogarticlesearchplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogarticlesearchplugin', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogarticlesearchplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogarticlesearchplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogauthorsplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogauthorsplugin', 'aldryn_newsblog')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogauthorsplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogauthorsplugin', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogauthorsplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogauthorsplugin')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogcategoriesplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogcategoriesplugin', 'aldryn_newsblog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogcategoriesplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogcategoriesplugin', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogcategoriesplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogcategoriesplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogfeaturedarticlesplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogfeaturedarticlesplugin', 'aldryn_newsblog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogfeaturedarticlesplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogfeaturedarticlesplugin', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogfeaturedarticlesplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogfeaturedarticlesplugin')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsbloglatestarticlesplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsbloglatestarticlesplugin', 'aldryn_newsblog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsbloglatestarticlesplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsbloglatestarticlesplugin', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsbloglatestarticlesplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsbloglatestarticlesplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogrelatedplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogrelatedplugin', 'aldryn_newsblog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogrelatedplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogrelatedplugin', 'aldryn_newsblog')
(0.003) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogrelatedplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogrelatedplugin')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogtagsplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogtagsplugin', 'aldryn_newsblog')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'newsblogtagsplugin' AND "django_content_type"."app_label" = 'aldryn_newsblog'); args=('newsblogtagsplugin', 'aldryn_newsblog')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_newsblog', 'newsblogtagsplugin') RETURNING "django_content_type"."id"; args=('aldryn_newsblog', 'newsblogtagsplugin')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (64, 65, 66, 55, 56, 57, 58, 59, 60, 61, 62, 63) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(64, 65, 66, 55, 56, 57, 58, 59, 60, 61, 62, 63)
(0.007) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add config', 56, 'add_newsblogconfig'), ('Can change config', 56, 'change_newsblogconfig'), ('Can delete config', 56, 'delete_newsblogconfig'), ('Can add article', 58, 'add_article'), ('Can change article', 58, 'change_article'), ('Can delete article', 58, 'delete_article'), ('Can add news blog archive plugin', 59, 'add_newsblogarchiveplugin'), ('Can change news blog archive plugin', 59, 'change_newsblogarchiveplugin'), ('Can delete news blog archive plugin', 59, 'delete_newsblogarchiveplugin'), ('Can add news blog article search plugin', 60, 'add_newsblogarticlesearchplugin'), ('Can change news blog article search plugin', 60, 'change_newsblogarticlesearchplugin'), ('Can delete news blog article search plugin', 60, 'delete_newsblogarticlesearchplugin'), ('Can add news blog authors plugin', 61, 'add_newsblogauthorsplugin'), ('Can change news blog authors plugin', 61, 'change_newsblogauthorsplugin'), ('Can delete news blog authors plugin', 61, 'delete_newsblogauthorsplugin'), ('Can add news blog categories plugin', 62, 'add_newsblogcategoriesplugin'), ('Can change news blog categories plugin', 62, 'change_newsblogcategoriesplugin'), ('Can delete news blog categories plugin', 62, 'delete_newsblogcategoriesplugin'), ('Can add news blog featured articles plugin', 63, 'add_newsblogfeaturedarticlesplugin'), ('Can change news blog featured articles plugin', 63, 'change_newsblogfeaturedarticlesplugin'), ('Can delete news blog featured articles plugin', 63, 'delete_newsblogfeaturedarticlesplugin'), ('Can add news blog latest articles plugin', 64, 'add_newsbloglatestarticlesplugin'), ('Can change news blog latest articles plugin', 64, 'change_newsbloglatestarticlesplugin'), ('Can delete news blog latest articles plugin', 64, 'delete_newsbloglatestarticlesplugin'), ('Can add news blog related plugin', 65, 'add_newsblogrelatedplugin'), ('Can change news blog related plugin', 65, 'change_newsblogrelatedplugin'), ('Can delete news blog related plugin', 65, 'delete_newsblogrelatedplugin'), ('Can add news blog tags plugin', 66, 'add_newsblogtagsplugin'), ('Can change news blog tags plugin', 66, 'change_newsblogtagsplugin'), ('Can delete news blog tags plugin', 66, 'delete_newsblogtagsplugin'); args=('Can add config', 56, 'add_newsblogconfig', 'Can change config', 56, 'change_newsblogconfig', 'Can delete config', 56, 'delete_newsblogconfig', 'Can add article', 58, 'add_article', 'Can change article', 58, 'change_article', 'Can delete article', 58, 'delete_article', 'Can add news blog archive plugin', 59, 'add_newsblogarchiveplugin', 'Can change news blog archive plugin', 59, 'change_newsblogarchiveplugin', 'Can delete news blog archive plugin', 59, 'delete_newsblogarchiveplugin', 'Can add news blog article search plugin', 60, 'add_newsblogarticlesearchplugin', 'Can change news blog article search plugin', 60, 'change_newsblogarticlesearchplugin', 'Can delete news blog article search plugin', 60, 'delete_newsblogarticlesearchplugin', 'Can add news blog authors plugin', 61, 'add_newsblogauthorsplugin', 'Can change news blog authors plugin', 61, 'change_newsblogauthorsplugin', 'Can delete news blog authors plugin', 61, 'delete_newsblogauthorsplugin', 'Can add news blog categories plugin', 62, 'add_newsblogcategoriesplugin', 'Can change news blog categories plugin', 62, 'change_newsblogcategoriesplugin', 'Can delete news blog categories plugin', 62, 'delete_newsblogcategoriesplugin', 'Can add news blog featured articles plugin', 63, 'add_newsblogfeaturedarticlesplugin', 'Can change news blog featured articles plugin', 63, 'change_newsblogfeaturedarticlesplugin', 'Can delete news blog featured articles plugin', 63, 'delete_newsblogfeaturedarticlesplugin', 'Can add news blog latest articles plugin', 64, 'add_newsbloglatestarticlesplugin', 'Can change news blog latest articles plugin', 64, 'change_newsbloglatestarticlesplugin', 'Can delete news blog latest articles plugin', 64, 'delete_newsbloglatestarticlesplugin', 'Can add news blog related plugin', 65, 'add_newsblogrelatedplugin', 'Can change news blog related plugin', 65, 'change_newsblogrelatedplugin', 'Can delete news blog related plugin', 65, 'delete_newsblogrelatedplugin', 'Can add news blog tags plugin', 66, 'add_newsblogtagsplugin', 'Can change news blog tags plugin', 66, 'change_newsblogtagsplugin', 'Can delete news blog tags plugin', 66, 'delete_newsblogtagsplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'aldryn_newsblog'; args=('aldryn_newsblog',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'grouptranslation' AND "django_content_type"."app_label" = 'aldryn_people'); args=('grouptranslation', 'aldryn_people')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'grouptranslation' AND "django_content_type"."app_label" = 'aldryn_people'); args=('grouptranslation', 'aldryn_people')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_people', 'grouptranslation') RETURNING "django_content_type"."id"; args=('aldryn_people', 'grouptranslation')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'group' AND "django_content_type"."app_label" = 'aldryn_people'); args=('group', 'aldryn_people')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'group' AND "django_content_type"."app_label" = 'aldryn_people'); args=('group', 'aldryn_people')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_people', 'group') RETURNING "django_content_type"."id"; args=('aldryn_people', 'group')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'persontranslation' AND "django_content_type"."app_label" = 'aldryn_people'); args=('persontranslation', 'aldryn_people')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'persontranslation' AND "django_content_type"."app_label" = 'aldryn_people'); args=('persontranslation', 'aldryn_people')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_people', 'persontranslation') RETURNING "django_content_type"."id"; args=('aldryn_people', 'persontranslation')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'person' AND "django_content_type"."app_label" = 'aldryn_people'); args=('person', 'aldryn_people')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'person' AND "django_content_type"."app_label" = 'aldryn_people'); args=('person', 'aldryn_people')
(0.003) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_people', 'person') RETURNING "django_content_type"."id"; args=('aldryn_people', 'person')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'peopleplugin' AND "django_content_type"."app_label" = 'aldryn_people'); args=('peopleplugin', 'aldryn_people')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'peopleplugin' AND "django_content_type"."app_label" = 'aldryn_people'); args=('peopleplugin', 'aldryn_people')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('aldryn_people', 'peopleplugin') RETURNING "django_content_type"."id"; args=('aldryn_people', 'peopleplugin')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (67, 68, 69, 70, 71) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(67, 68, 69, 70, 71)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add Group', 68, 'add_group'), ('Can change Group', 68, 'change_group'), ('Can delete Group', 68, 'delete_group'), ('Can add Person', 70, 'add_person'), ('Can change Person', 70, 'change_person'), ('Can delete Person', 70, 'delete_person'), ('Can add people plugin', 71, 'add_peopleplugin'), ('Can change people plugin', 71, 'change_peopleplugin'), ('Can delete people plugin', 71, 'delete_peopleplugin'); args=('Can add Group', 68, 'add_group', 'Can change Group', 68, 'change_group', 'Can delete Group', 68, 'delete_group', 'Can add Person', 70, 'add_person', 'Can change Person', 70, 'change_person', 'Can delete Person', 70, 'delete_person', 'Can add people plugin', 71, 'add_peopleplugin', 'Can change people plugin', 71, 'change_peopleplugin', 'Can delete people plugin', 71, 'delete_peopleplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'aldryn_people'; args=('aldryn_people',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'cachekey' AND "django_content_type"."app_label" = 'menus'); args=('cachekey', 'menus')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'cachekey' AND "django_content_type"."app_label" = 'menus'); args=('cachekey', 'menus')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('menus', 'cachekey') RETURNING "django_content_type"."id"; args=('menus', 'cachekey')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (72) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(72,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add cache key', 72, 'add_cachekey'), ('Can change cache key', 72, 'change_cachekey'), ('Can delete cache key', 72, 'delete_cachekey'); args=('Can add cache key', 72, 'add_cachekey', 'Can change cache key', 72, 'change_cachekey', 'Can delete cache key', 72, 'delete_cachekey')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'menus'; args=('menus',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerimage' AND "django_content_type"."app_label" = 'cmsplugin_filer_image'); args=('filerimage', 'cmsplugin_filer_image')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerimage' AND "django_content_type"."app_label" = 'cmsplugin_filer_image'); args=('filerimage', 'cmsplugin_filer_image')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cmsplugin_filer_image', 'filerimage') RETURNING "django_content_type"."id"; args=('cmsplugin_filer_image', 'filerimage')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnailoption' AND "django_content_type"."app_label" = 'cmsplugin_filer_image'); args=('thumbnailoption', 'cmsplugin_filer_image')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'thumbnailoption' AND "django_content_type"."app_label" = 'cmsplugin_filer_image'); args=('thumbnailoption', 'cmsplugin_filer_image')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cmsplugin_filer_image', 'thumbnailoption') RETURNING "django_content_type"."id"; args=('cmsplugin_filer_image', 'thumbnailoption')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (73, 74) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(73, 74)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add filer image', 73, 'add_filerimage'), ('Can change filer image', 73, 'change_filerimage'), ('Can delete filer image', 73, 'delete_filerimage'), ('Can add thumbnail option', 74, 'add_thumbnailoption'), ('Can change thumbnail option', 74, 'change_thumbnailoption'), ('Can delete thumbnail option', 74, 'delete_thumbnailoption'); args=('Can add filer image', 73, 'add_filerimage', 'Can change filer image', 73, 'change_filerimage', 'Can delete filer image', 73, 'delete_filerimage', 'Can add thumbnail option', 74, 'add_thumbnailoption', 'Can change thumbnail option', 74, 'change_thumbnailoption', 'Can delete thumbnail option', 74, 'delete_thumbnailoption')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'cmsplugin_filer_image'; args=('cmsplugin_filer_image',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'file' AND "django_content_type"."app_label" = 'djangocms_file'); args=('file', 'djangocms_file')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'file' AND "django_content_type"."app_label" = 'djangocms_file'); args=('file', 'djangocms_file')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_file', 'file') RETURNING "django_content_type"."id"; args=('djangocms_file', 'file')
(0.001) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (75) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(75,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add file', 75, 'add_file'), ('Can change file', 75, 'change_file'), ('Can delete file', 75, 'delete_file'); args=('Can add file', 75, 'add_file', 'Can change file', 75, 'change_file', 'Can delete file', 75, 'delete_file')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'djangocms_file'; args=('djangocms_file',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'picture' AND "django_content_type"."app_label" = 'djangocms_picture'); args=('picture', 'djangocms_picture')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'picture' AND "django_content_type"."app_label" = 'djangocms_picture'); args=('picture', 'djangocms_picture')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_picture', 'picture') RETURNING "django_content_type"."id"; args=('djangocms_picture', 'picture')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (76) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(76,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add picture', 76, 'add_picture'), ('Can change picture', 76, 'change_picture'), ('Can delete picture', 76, 'delete_picture'); args=('Can add picture', 76, 'add_picture', 'Can change picture', 76, 'change_picture', 'Can delete picture', 76, 'delete_picture')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'djangocms_picture'; args=('djangocms_picture',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'video' AND "django_content_type"."app_label" = 'djangocms_video'); args=('video', 'djangocms_video')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'video' AND "django_content_type"."app_label" = 'djangocms_video'); args=('video', 'djangocms_video')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_video', 'video') RETURNING "django_content_type"."id"; args=('djangocms_video', 'video')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (77) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(77,)
(0.005) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add video', 77, 'add_video'), ('Can change video', 77, 'change_video'), ('Can delete video', 77, 'delete_video'); args=('Can add video', 77, 'add_video', 'Can change video', 77, 'change_video', 'Can delete video', 77, 'delete_video')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'djangocms_video'; args=('djangocms_video',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pagemeta' AND "django_content_type"."app_label" = 'djangocms_page_meta'); args=('pagemeta', 'djangocms_page_meta')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'pagemeta' AND "django_content_type"."app_label" = 'djangocms_page_meta'); args=('pagemeta', 'djangocms_page_meta')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_page_meta', 'pagemeta') RETURNING "django_content_type"."id"; args=('djangocms_page_meta', 'pagemeta')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'titlemeta' AND "django_content_type"."app_label" = 'djangocms_page_meta'); args=('titlemeta', 'djangocms_page_meta')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'titlemeta' AND "django_content_type"."app_label" = 'djangocms_page_meta'); args=('titlemeta', 'djangocms_page_meta')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_page_meta', 'titlemeta') RETURNING "django_content_type"."id"; args=('djangocms_page_meta', 'titlemeta')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (78, 79) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(78, 79)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add Page meta info (all languages)', 78, 'add_pagemeta'), ('Can change Page meta info (all languages)', 78, 'change_pagemeta'), ('Can delete Page meta info (all languages)', 78, 'delete_pagemeta'), ('Can add Page meta info (language-dependent)', 79, 'add_titlemeta'), ('Can change Page meta info (language-dependent)', 79, 'change_titlemeta'), ('Can delete Page meta info (language-dependent)', 79, 'delete_titlemeta'); args=('Can add Page meta info (all languages)', 78, 'add_pagemeta', 'Can change Page meta info (all languages)', 78, 'change_pagemeta', 'Can delete Page meta info (all languages)', 78, 'delete_pagemeta', 'Can add Page meta info (language-dependent)', 79, 'add_titlemeta', 'Can change Page meta info (language-dependent)', 79, 'change_titlemeta', 'Can delete Page meta info (language-dependent)', 79, 'delete_titlemeta')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'djangocms_page_meta'; args=('djangocms_page_meta',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'text' AND "django_content_type"."app_label" = 'djangocms_text_ckeditor'); args=('text', 'djangocms_text_ckeditor')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'text' AND "django_content_type"."app_label" = 'djangocms_text_ckeditor'); args=('text', 'djangocms_text_ckeditor')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('djangocms_text_ckeditor', 'text') RETURNING "django_content_type"."id"; args=('djangocms_text_ckeditor', 'text')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (80) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(80,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add text', 80, 'add_text'), ('Can change text', 80, 'change_text'), ('Can delete text', 80, 'delete_text'); args=('Can add text', 80, 'add_text', 'Can change text', 80, 'change_text', 'Can delete text', 80, 'delete_text')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'djangocms_text_ckeditor'; args=('djangocms_text_ckeditor',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerfile' AND "django_content_type"."app_label" = 'cmsplugin_filer_file'); args=('filerfile', 'cmsplugin_filer_file')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerfile' AND "django_content_type"."app_label" = 'cmsplugin_filer_file'); args=('filerfile', 'cmsplugin_filer_file')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cmsplugin_filer_file', 'filerfile') RETURNING "django_content_type"."id"; args=('cmsplugin_filer_file', 'filerfile')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (81) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(81,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add filer file', 81, 'add_filerfile'), ('Can change filer file', 81, 'change_filerfile'), ('Can delete filer file', 81, 'delete_filerfile'); args=('Can add filer file', 81, 'add_filerfile', 'Can change filer file', 81, 'change_filerfile', 'Can delete filer file', 81, 'delete_filerfile')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'cmsplugin_filer_file'; args=('cmsplugin_filer_file',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerfolder' AND "django_content_type"."app_label" = 'cmsplugin_filer_folder'); args=('filerfolder', 'cmsplugin_filer_folder')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerfolder' AND "django_content_type"."app_label" = 'cmsplugin_filer_folder'); args=('filerfolder', 'cmsplugin_filer_folder')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cmsplugin_filer_folder', 'filerfolder') RETURNING "django_content_type"."id"; args=('cmsplugin_filer_folder', 'filerfolder')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (82) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(82,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add filer folder', 82, 'add_filerfolder'), ('Can change filer folder', 82, 'change_filerfolder'), ('Can delete filer folder', 82, 'delete_filerfolder'); args=('Can add filer folder', 82, 'add_filerfolder', 'Can change filer folder', 82, 'change_filerfolder', 'Can delete filer folder', 82, 'delete_filerfolder')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'cmsplugin_filer_folder'; args=('cmsplugin_filer_folder',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerlinkplugin' AND "django_content_type"."app_label" = 'cmsplugin_filer_link'); args=('filerlinkplugin', 'cmsplugin_filer_link')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filerlinkplugin' AND "django_content_type"."app_label" = 'cmsplugin_filer_link'); args=('filerlinkplugin', 'cmsplugin_filer_link')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cmsplugin_filer_link', 'filerlinkplugin') RETURNING "django_content_type"."id"; args=('cmsplugin_filer_link', 'filerlinkplugin')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (83) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(83,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add filer link plugin', 83, 'add_filerlinkplugin'), ('Can change filer link plugin', 83, 'change_filerlinkplugin'), ('Can delete filer link plugin', 83, 'delete_filerlinkplugin'); args=('Can add filer link plugin', 83, 'add_filerlinkplugin', 'Can change filer link plugin', 83, 'change_filerlinkplugin', 'Can delete filer link plugin', 83, 'delete_filerlinkplugin')
(0.003) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'cmsplugin_filer_link'; args=('cmsplugin_filer_link',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filervideo' AND "django_content_type"."app_label" = 'cmsplugin_filer_video'); args=('filervideo', 'cmsplugin_filer_video')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'filervideo' AND "django_content_type"."app_label" = 'cmsplugin_filer_video'); args=('filervideo', 'cmsplugin_filer_video')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('cmsplugin_filer_video', 'filervideo') RETURNING "django_content_type"."id"; args=('cmsplugin_filer_video', 'filervideo')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (84) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(84,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add filer video', 84, 'add_filervideo'), ('Can change filer video', 84, 'change_filervideo'), ('Can delete filer video', 84, 'delete_filervideo'); args=('Can add filer video', 84, 'add_filervideo', 'Can change filer video', 84, 'change_filervideo', 'Can delete filer video', 84, 'delete_filervideo')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'cmsplugin_filer_video'; args=('cmsplugin_filer_video',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'revision' AND "django_content_type"."app_label" = 'reversion'); args=('revision', 'reversion')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'revision' AND "django_content_type"."app_label" = 'reversion'); args=('revision', 'reversion')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('reversion', 'revision') RETURNING "django_content_type"."id"; args=('reversion', 'revision')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'version' AND "django_content_type"."app_label" = 'reversion'); args=('version', 'reversion')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'version' AND "django_content_type"."app_label" = 'reversion'); args=('version', 'reversion')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('reversion', 'version') RETURNING "django_content_type"."id"; args=('reversion', 'version')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (85, 86) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(85, 86)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add revision', 85, 'add_revision'), ('Can change revision', 85, 'change_revision'), ('Can delete revision', 85, 'delete_revision'), ('Can add version', 86, 'add_version'), ('Can change version', 86, 'change_version'), ('Can delete version', 86, 'delete_version'); args=('Can add revision', 85, 'add_revision', 'Can change revision', 85, 'change_revision', 'Can delete revision', 85, 'delete_revision', 'Can add version', 86, 'add_version', 'Can change version', 86, 'change_version', 'Can delete version', 86, 'delete_version')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'reversion'; args=('reversion',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'ungleichpage' AND "django_content_type"."app_label" = 'ungleich'); args=('ungleichpage', 'ungleich')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'ungleichpage' AND "django_content_type"."app_label" = 'ungleich'); args=('ungleichpage', 'ungleich')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('ungleich', 'ungleichpage') RETURNING "django_content_type"."id"; args=('ungleich', 'ungleichpage')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (87) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(87,)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add ungleich page', 87, 'add_ungleichpage'), ('Can change ungleich page', 87, 'change_ungleichpage'), ('Can delete ungleich page', 87, 'delete_ungleichpage'); args=('Can add ungleich page', 87, 'add_ungleichpage', 'Can change ungleich page', 87, 'change_ungleichpage', 'Can delete ungleich page', 87, 'delete_ungleichpage')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'ungleich'; args=('ungleich',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'hostingplan' AND "django_content_type"."app_label" = 'hosting'); args=('hostingplan', 'hosting')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'hostingplan' AND "django_content_type"."app_label" = 'hosting'); args=('hostingplan', 'hosting')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('hosting', 'hostingplan') RETURNING "django_content_type"."id"; args=('hosting', 'hostingplan')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'hostingorder' AND "django_content_type"."app_label" = 'hosting'); args=('hostingorder', 'hosting')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'hostingorder' AND "django_content_type"."app_label" = 'hosting'); args=('hostingorder', 'hosting')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('hosting', 'hostingorder') RETURNING "django_content_type"."id"; args=('hosting', 'hostingorder')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'userhostingkey' AND "django_content_type"."app_label" = 'hosting'); args=('userhostingkey', 'hosting')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'userhostingkey' AND "django_content_type"."app_label" = 'hosting'); args=('userhostingkey', 'hosting')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('hosting', 'userhostingkey') RETURNING "django_content_type"."id"; args=('hosting', 'userhostingkey')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'hostingbill' AND "django_content_type"."app_label" = 'hosting'); args=('hostingbill', 'hosting')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'hostingbill' AND "django_content_type"."app_label" = 'hosting'); args=('hostingbill', 'hosting')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('hosting', 'hostingbill') RETURNING "django_content_type"."id"; args=('hosting', 'hostingbill')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (88, 89, 90, 91) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(88, 89, 90, 91)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add hosting plan', 88, 'add_hostingplan'), ('Can change hosting plan', 88, 'change_hostingplan'), ('Can delete hosting plan', 88, 'delete_hostingplan'), ('Can add hosting order', 89, 'add_hostingorder'), ('Can change hosting order', 89, 'change_hostingorder'), ('Can delete hosting order', 89, 'delete_hostingorder'), ('View Hosting Order', 89, 'view_hostingorder'), ('Can add user hosting key', 90, 'add_userhostingkey'), ('Can change user hosting key', 90, 'change_userhostingkey'), ('Can delete user hosting key', 90, 'delete_userhostingkey'), ('Can add hosting bill', 91, 'add_hostingbill'), ('Can change hosting bill', 91, 'change_hostingbill'), ('Can delete hosting bill', 91, 'delete_hostingbill'), ('View Hosting Bill', 91, 'view_hostingbill'); args=('Can add hosting plan', 88, 'add_hostingplan', 'Can change hosting plan', 88, 'change_hostingplan', 'Can delete hosting plan', 88, 'delete_hostingplan', 'Can add hosting order', 89, 'add_hostingorder', 'Can change hosting order', 89, 'change_hostingorder', 'Can delete hosting order', 89, 'delete_hostingorder', 'View Hosting Order', 89, 'view_hostingorder', 'Can add user hosting key', 90, 'add_userhostingkey', 'Can change user hosting key', 90, 'change_userhostingkey', 'Can delete user hosting key', 90, 'delete_userhostingkey', 'Can add hosting bill', 91, 'add_hostingbill', 'Can change hosting bill', 91, 'change_hostingbill', 'Can delete hosting bill', 91, 'delete_hostingbill', 'View Hosting Bill', 91, 'view_hostingbill')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'hosting'; args=('hosting',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'membershiptype' AND "django_content_type"."app_label" = 'digitalglarus'); args=('membershiptype', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'membershiptype' AND "django_content_type"."app_label" = 'digitalglarus'); args=('membershiptype', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'membershiptype') RETURNING "django_content_type"."id"; args=('digitalglarus', 'membershiptype')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'membership' AND "django_content_type"."app_label" = 'digitalglarus'); args=('membership', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'membership' AND "django_content_type"."app_label" = 'digitalglarus'); args=('membership', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'membership') RETURNING "django_content_type"."id"; args=('digitalglarus', 'membership')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'membershiporder' AND "django_content_type"."app_label" = 'digitalglarus'); args=('membershiporder', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'membershiporder' AND "django_content_type"."app_label" = 'digitalglarus'); args=('membershiporder', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'membershiporder') RETURNING "django_content_type"."id"; args=('digitalglarus', 'membershiporder')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'bookingprice' AND "django_content_type"."app_label" = 'digitalglarus'); args=('bookingprice', 'digitalglarus')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'bookingprice' AND "django_content_type"."app_label" = 'digitalglarus'); args=('bookingprice', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'bookingprice') RETURNING "django_content_type"."id"; args=('digitalglarus', 'bookingprice')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'booking' AND "django_content_type"."app_label" = 'digitalglarus'); args=('booking', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'booking' AND "django_content_type"."app_label" = 'digitalglarus'); args=('booking', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'booking') RETURNING "django_content_type"."id"; args=('digitalglarus', 'booking')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'bookingorder' AND "django_content_type"."app_label" = 'digitalglarus'); args=('bookingorder', 'digitalglarus')
(0.003) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'bookingorder' AND "django_content_type"."app_label" = 'digitalglarus'); args=('bookingorder', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'bookingorder') RETURNING "django_content_type"."id"; args=('digitalglarus', 'bookingorder')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'bookingcancellation' AND "django_content_type"."app_label" = 'digitalglarus'); args=('bookingcancellation', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'bookingcancellation' AND "django_content_type"."app_label" = 'digitalglarus'); args=('bookingcancellation', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'bookingcancellation') RETURNING "django_content_type"."id"; args=('digitalglarus', 'bookingcancellation')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'supporter' AND "django_content_type"."app_label" = 'digitalglarus'); args=('supporter', 'digitalglarus')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'supporter' AND "django_content_type"."app_label" = 'digitalglarus'); args=('supporter', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'supporter') RETURNING "django_content_type"."id"; args=('digitalglarus', 'supporter')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dggallery' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dggallery', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dggallery' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dggallery', 'digitalglarus')
(0.001) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'dggallery') RETURNING "django_content_type"."id"; args=('digitalglarus', 'dggallery')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dgpicture' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dgpicture', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dgpicture' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dgpicture', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'dgpicture') RETURNING "django_content_type"."id"; args=('digitalglarus', 'dgpicture')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dggalleryplugin' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dggalleryplugin', 'digitalglarus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dggalleryplugin' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dggalleryplugin', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'dggalleryplugin') RETURNING "django_content_type"."id"; args=('digitalglarus', 'dggalleryplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dgsupportersplugin' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dgsupportersplugin', 'digitalglarus')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'dgsupportersplugin' AND "django_content_type"."app_label" = 'digitalglarus'); args=('dgsupportersplugin', 'digitalglarus')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('digitalglarus', 'dgsupportersplugin') RETURNING "django_content_type"."id"; args=('digitalglarus', 'dgsupportersplugin')
(0.003) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (96, 97, 98, 99, 100, 101, 102, 103, 92, 93, 94, 95) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(96, 97, 98, 99, 100, 101, 102, 103, 92, 93, 94, 95)
(0.006) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add membership type', 92, 'add_membershiptype'), ('Can change membership type', 92, 'change_membershiptype'), ('Can delete membership type', 92, 'delete_membershiptype'), ('Can add membership', 93, 'add_membership'), ('Can change membership', 93, 'change_membership'), ('Can delete membership', 93, 'delete_membership'), ('Can add membership order', 94, 'add_membershiporder'), ('Can change membership order', 94, 'change_membershiporder'), ('Can delete membership order', 94, 'delete_membershiporder'), ('Can add booking price', 95, 'add_bookingprice'), ('Can change booking price', 95, 'change_bookingprice'), ('Can delete booking price', 95, 'delete_bookingprice'), ('Can add booking', 96, 'add_booking'), ('Can change booking', 96, 'change_booking'), ('Can delete booking', 96, 'delete_booking'), ('Can add booking order', 97, 'add_bookingorder'), ('Can change booking order', 97, 'change_bookingorder'), ('Can delete booking order', 97, 'delete_bookingorder'), ('Can add booking cancellation', 98, 'add_bookingcancellation'), ('Can change booking cancellation', 98, 'change_bookingcancellation'), ('Can delete booking cancellation', 98, 'delete_bookingcancellation'), ('Can add supporter', 99, 'add_supporter'), ('Can change supporter', 99, 'change_supporter'), ('Can delete supporter', 99, 'delete_supporter'), ('Can add dg gallery', 100, 'add_dggallery'), ('Can change dg gallery', 100, 'change_dggallery'), ('Can delete dg gallery', 100, 'delete_dggallery'), ('Can add dg picture', 101, 'add_dgpicture'), ('Can change dg picture', 101, 'change_dgpicture'), ('Can delete dg picture', 101, 'delete_dgpicture'), ('Can add dg gallery plugin', 102, 'add_dggalleryplugin'), ('Can change dg gallery plugin', 102, 'change_dggalleryplugin'), ('Can delete dg gallery plugin', 102, 'delete_dggalleryplugin'), ('Can add dg supporters plugin', 103, 'add_dgsupportersplugin'), ('Can change dg supporters plugin', 103, 'change_dgsupportersplugin'), ('Can delete dg supporters plugin', 103, 'delete_dgsupportersplugin'); args=('Can add membership type', 92, 'add_membershiptype', 'Can change membership type', 92, 'change_membershiptype', 'Can delete membership type', 92, 'delete_membershiptype', 'Can add membership', 93, 'add_membership', 'Can change membership', 93, 'change_membership', 'Can delete membership', 93, 'delete_membership', 'Can add membership order', 94, 'add_membershiporder', 'Can change membership order', 94, 'change_membershiporder', 'Can delete membership order', 94, 'delete_membershiporder', 'Can add booking price', 95, 'add_bookingprice', 'Can change booking price', 95, 'change_bookingprice', 'Can delete booking price', 95, 'delete_bookingprice', 'Can add booking', 96, 'add_booking', 'Can change booking', 96, 'change_booking', 'Can delete booking', 96, 'delete_booking', 'Can add booking order', 97, 'add_bookingorder', 'Can change booking order', 97, 'change_bookingorder', 'Can delete booking order', 97, 'delete_bookingorder', 'Can add booking cancellation', 98, 'add_bookingcancellation', 'Can change booking cancellation', 98, 'change_bookingcancellation', 'Can delete booking cancellation', 98, 'delete_bookingcancellation', 'Can add supporter', 99, 'add_supporter', 'Can change supporter', 99, 'change_supporter', 'Can delete supporter', 99, 'delete_supporter', 'Can add dg gallery', 100, 'add_dggallery', 'Can change dg gallery', 100, 'change_dggallery', 'Can delete dg gallery', 100, 'delete_dggallery', 'Can add dg picture', 101, 'add_dgpicture', 'Can change dg picture', 101, 'change_dgpicture', 'Can delete dg picture', 101, 'delete_dgpicture', 'Can add dg gallery plugin', 102, 'add_dggalleryplugin', 'Can change dg gallery plugin', 102, 'change_dggalleryplugin', 'Can delete dg gallery plugin', 102, 'delete_dggalleryplugin', 'Can add dg supporters plugin', 103, 'add_dgsupportersplugin', 'Can change dg supporters plugin', 103, 'change_dgsupportersplugin', 'Can delete dg supporters plugin', 103, 'delete_dgsupportersplugin')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'digitalglarus'; args=('digitalglarus',)
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'donatorstatus' AND "django_content_type"."app_label" = 'nosystemd'); args=('donatorstatus', 'nosystemd')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'donatorstatus' AND "django_content_type"."app_label" = 'nosystemd'); args=('donatorstatus', 'nosystemd')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('nosystemd', 'donatorstatus') RETURNING "django_content_type"."id"; args=('nosystemd', 'donatorstatus')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'donation' AND "django_content_type"."app_label" = 'nosystemd'); args=('donation', 'nosystemd')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'donation' AND "django_content_type"."app_label" = 'nosystemd'); args=('donation', 'nosystemd')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('nosystemd', 'donation') RETURNING "django_content_type"."id"; args=('nosystemd', 'donation')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (104, 105) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(104, 105)
(0.003) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add donator status', 104, 'add_donatorstatus'), ('Can change donator status', 104, 'change_donatorstatus'), ('Can delete donator status', 104, 'delete_donatorstatus'), ('Can add donation', 105, 'add_donation'), ('Can change donation', 105, 'change_donation'), ('Can delete donation', 105, 'delete_donation'); args=('Can add donator status', 104, 'add_donatorstatus', 'Can change donator status', 104, 'change_donatorstatus', 'Can delete donator status', 104, 'delete_donatorstatus', 'Can add donation', 105, 'add_donation', 'Can change donation', 105, 'change_donation', 'Can delete donation', 105, 'delete_donation')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'nosystemd'; args=('nosystemd',)
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'betaaccessvmtype' AND "django_content_type"."app_label" = 'datacenterlight'); args=('betaaccessvmtype', 'datacenterlight')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'betaaccessvmtype' AND "django_content_type"."app_label" = 'datacenterlight'); args=('betaaccessvmtype', 'datacenterlight')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('datacenterlight', 'betaaccessvmtype') RETURNING "django_content_type"."id"; args=('datacenterlight', 'betaaccessvmtype')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'betaaccess' AND "django_content_type"."app_label" = 'datacenterlight'); args=('betaaccess', 'datacenterlight')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'betaaccess' AND "django_content_type"."app_label" = 'datacenterlight'); args=('betaaccess', 'datacenterlight')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('datacenterlight', 'betaaccess') RETURNING "django_content_type"."id"; args=('datacenterlight', 'betaaccess')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'betaaccessvm' AND "django_content_type"."app_label" = 'datacenterlight'); args=('betaaccessvm', 'datacenterlight')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'betaaccessvm' AND "django_content_type"."app_label" = 'datacenterlight'); args=('betaaccessvm', 'datacenterlight')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('datacenterlight', 'betaaccessvm') RETURNING "django_content_type"."id"; args=('datacenterlight', 'betaaccessvm')
(0.001) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'vmtemplate' AND "django_content_type"."app_label" = 'datacenterlight'); args=('vmtemplate', 'datacenterlight')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE ("django_content_type"."model" = 'vmtemplate' AND "django_content_type"."app_label" = 'datacenterlight'); args=('vmtemplate', 'datacenterlight')
(0.002) INSERT INTO "django_content_type" ("app_label", "model") VALUES ('datacenterlight', 'vmtemplate') RETURNING "django_content_type"."id"; args=('datacenterlight', 'vmtemplate')
(0.002) SELECT "auth_permission"."content_type_id", "auth_permission"."codename" FROM "auth_permission" INNER JOIN "django_content_type" ON ("auth_permission"."content_type_id" = "django_content_type"."id") WHERE "auth_permission"."content_type_id" IN (106, 107, 108, 109) ORDER BY "django_content_type"."app_label" ASC, "django_content_type"."model" ASC, "auth_permission"."codename" ASC; args=(106, 107, 108, 109)
(0.002) INSERT INTO "auth_permission" ("name", "content_type_id", "codename") VALUES ('Can add beta access vm type', 106, 'add_betaaccessvmtype'), ('Can change beta access vm type', 106, 'change_betaaccessvmtype'), ('Can delete beta access vm type', 106, 'delete_betaaccessvmtype'), ('Can add beta access', 107, 'add_betaaccess'), ('Can change beta access', 107, 'change_betaaccess'), ('Can delete beta access', 107, 'delete_betaaccess'), ('Can add beta access vm', 108, 'add_betaaccessvm'), ('Can change beta access vm', 108, 'change_betaaccessvm'), ('Can delete beta access vm', 108, 'delete_betaaccessvm'), ('Can add vm template', 109, 'add_vmtemplate'), ('Can change vm template', 109, 'change_vmtemplate'), ('Can delete vm template', 109, 'delete_vmtemplate'); args=('Can add beta access vm type', 106, 'add_betaaccessvmtype', 'Can change beta access vm type', 106, 'change_betaaccessvmtype', 'Can delete beta access vm type', 106, 'delete_betaaccessvmtype', 'Can add beta access', 107, 'add_betaaccess', 'Can change beta access', 107, 'change_betaaccess', 'Can delete beta access', 107, 'delete_betaaccess', 'Can add beta access vm', 108, 'add_betaaccessvm', 'Can change beta access vm', 108, 'change_betaaccessvm', 'Can delete beta access vm', 108, 'delete_betaaccessvm', 'Can add vm template', 109, 'add_vmtemplate', 'Can change vm template', 109, 'change_vmtemplate', 'Can delete vm template', 109, 'delete_vmtemplate')
(0.002) SELECT "django_content_type"."id", "django_content_type"."app_label", "django_content_type"."model" FROM "django_content_type" WHERE "django_content_type"."app_label" = 'datacenterlight'; args=('datacenterlight',)
(0.009) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.009) INSERT INTO "djangocms_blog_blogconfig" ("type", "namespace", "app_data") VALUES ('djangocms_blog.cms_appconfig.BlogConfig', 'Blog', '{}') RETURNING "djangocms_blog_blogconfig"."id"; args=('djangocms_blog.cms_appconfig.BlogConfig', 'Blog', '{}')
(0.012) SELECT "djangocms_blog_blogconfig_translation"."id", "djangocms_blog_blogconfig_translation"."language_code", "djangocms_blog_blogconfig_translation"."app_title", "djangocms_blog_blogconfig_translation"."object_name", "djangocms_blog_blogconfig_translation"."master_id" FROM "djangocms_blog_blogconfig_translation" WHERE ("djangocms_blog_blogconfig_translation"."master_id" = 1 AND "djangocms_blog_blogconfig_translation"."language_code" = 'en-us'); args=(1, 'en-us')
(0.012) INSERT INTO "djangocms_blog_blogconfig_translation" ("language_code", "app_title", "object_name", "master_id") VALUES ('en-us', 'Blog', 'Article', 1) RETURNING "djangocms_blog_blogconfig_translation"."id"; args=('en-us', 'Blog', 'Article', 1)
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.039) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") WHERE ("cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:37.716077+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:37.717078+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND "cms_title"."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(1, datetime.datetime(2017, 8, 15, 19, 14, 37, 716077, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 37, 717078, tzinfo=<UTC>), True)
(0.003) SELECT "cms_title"."slug" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'en-us' AND "cms_page"."parent_id" IS NULL); args=('en-us',)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."depth" = 1 ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" IS NULL; args=()
(0.004) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.026) INSERT INTO "cms_page" ("path", "depth", "numchild", "created_by", "changed_by", "parent_id", "creation_date", "changed_date", "publication_date", "publication_end_date", "in_navigation", "soft_root", "reverse_id", "navigation_extenders", "template", "site_id", "login_required", "limit_visibility_in_menu", "is_home", "application_urls", "application_namespace", "publisher_is_draft", "publisher_public_id", "languages", "revision_id", "xframe_options") VALUES ('0001', 1, 0, 'script', 'script', NULL, '2017-08-15T19:14:37.965754+00:00'::timestamptz, '2017-08-15T19:14:37.965754+00:00'::timestamptz, NULL, NULL, true, false, NULL, NULL, 'base_glarus.html', 1, false, NULL, false, NULL, NULL, true, NULL, NULL, 0, 0) RETURNING "cms_page"."id"; args=('0001', 1, 0, 'script', 'script', None, datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), None, None, True, False, None, None, 'base_glarus.html', 1, False, None, False, None, None, True, None, None, 0, 0)
(0.013) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.010) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = true AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:38.076828+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:38.076828+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(True, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 38, 76828, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 76828, tzinfo=<UTC>), True)
(0.003) SELECT COUNT(*) AS "__count" FROM "cms_title" INNER JOIN "cms_title" T3 ON ("cms_title"."publisher_public_id" = T3."id") WHERE ("cms_title"."page_id" = 1 AND "cms_title"."published" = true AND T3."published" = true); args=(1, True, True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 1)) ORDER BY "cms_page"."path" ASC; args=(True, True, 1, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."id" = 1 AND "cms_page"."site_id" = 1); args=(True, 1, 1)
(0.001) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.000) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:38.130872+00:00'::timestamptz, "publication_date" = NULL, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = NULL, "languages" = NULL, "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 130872, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."id" = 1 AND NOT ("cms_page"."id" = 1) AND "cms_page"."site_id" = 1) ORDER BY "cms_page"."path" ASC; args=(1, 1, 1)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."page_id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."id" = 1 AND NOT ("cms_page"."id" = 1) AND "cms_page"."site_id" = 1) ORDER BY "cms_page"."path" ASC; args=(1, 1, 1)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."page_id" = 1; args=(1,)
(0.001) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:38.215933+00:00'::timestamptz, "publication_date" = NULL, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = NULL, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 215933, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 'en-us', 0, 0, 1)
(0.001) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.005) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = true AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:38.263977+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:38.263977+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(True, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 38, 263977, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 263977, tzinfo=<UTC>), True)
(0.003) SELECT COUNT(*) AS "__count" FROM "cms_title" INNER JOIN "cms_title" T3 ON ("cms_title"."publisher_public_id" = T3."id") WHERE ("cms_title"."page_id" = 1 AND "cms_title"."published" = true AND T3."published" = true); args=(1, True, True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 1)) ORDER BY "cms_page"."path" ASC; args=(True, True, 1, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."id" = 1 AND "cms_page"."site_id" = 1); args=(True, 1, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:38.329035+00:00'::timestamptz, "publication_date" = NULL, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = NULL, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 329035, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 'en-us', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.015) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('en-us', 'Home', NULL, NULL, NULL, 'home', '', false, NULL, 1, '2017-08-15T19:14:38.206434+00:00'::timestamptz, false, true, NULL, 1) RETURNING "cms_title"."id"; args=('en-us', 'Home', None, None, None, 'home', '', False, None, 1, datetime.datetime(2017, 8, 15, 19, 14, 38, 206434, tzinfo=<UTC>), False, True, None, 1)
(0.004) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'en-us' AND "cms_page"."path" BETWEEN '00010000' AND '0001ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 2) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('en-us', '00010000', '0001ZZZZ', False, 2)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_page" T3 ON ("cms_page"."publisher_public_id" = T3."id") WHERE ("cms_page"."depth" = 1 AND "cms_page"."site_id" = 1 AND T3."parent_id" IS NULL AND "cms_page"."publisher_is_draft" = true AND "cms_page"."publisher_public_id" IS NOT NULL AND "cms_page"."path" < '0001') ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1, 1, True, '0001')
(0.001) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."depth" = 1 ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."depth" = 1 ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" IS NULL; args=()
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) INSERT INTO "cms_page" ("path", "depth", "numchild", "created_by", "changed_by", "parent_id", "creation_date", "changed_date", "publication_date", "publication_end_date", "in_navigation", "soft_root", "reverse_id", "navigation_extenders", "template", "site_id", "login_required", "limit_visibility_in_menu", "is_home", "application_urls", "application_namespace", "publisher_is_draft", "publisher_public_id", "languages", "revision_id", "xframe_options") VALUES ('0002', 1, 0, 'script', 'script', NULL, '2017-08-15T19:14:38.467138+00:00'::timestamptz, '2017-08-15T19:14:38.468138+00:00'::timestamptz, '2017-08-15T19:14:38.429114+00:00'::timestamptz, NULL, true, false, NULL, NULL, 'base_glarus.html', 1, false, NULL, false, NULL, NULL, false, 1, NULL, 0, 0) RETURNING "cms_page"."id"; args=('0002', 1, 0, 'script', 'script', None, datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 468138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), None, True, False, None, None, 'base_glarus.html', 1, False, None, False, None, None, False, 1, None, 0, 0)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.005) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:38.523191+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:38.524195+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 38, 523191, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 524195, tzinfo=<UTC>), True)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:38.568225+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = NULL, "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 568225, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 0, 0, 2)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."id" = 2 AND NOT ("cms_page"."id" = 2) AND "cms_page"."site_id" = 1) ORDER BY "cms_page"."path" ASC; args=(2, 2, 1)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."page_id" = 2; args=(2,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."id" = 2 AND NOT ("cms_page"."id" = 2) AND "cms_page"."site_id" = 1) ORDER BY "cms_page"."path" ASC; args=(2, 2, 1)
(0.004) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."page_id" = 2; args=(2,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT "cms_title"."language", "cms_title"."id" FROM "cms_title" WHERE ("cms_title"."page_id" = 2 AND "cms_title"."language" = 'en-us'); args=(2, 'en-us')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 1 AND "cms_title"."language" = 'en-us'); args=(1, 'en-us')
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:38.702747+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 702747, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.004) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.006) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:38.763301+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:38.764300+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 38, 763301, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 764300, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:38.819354+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 819354, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.005) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."id" IS NULL LIMIT 1; args=()
(0.002) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('en-us', 'Home', NULL, NULL, NULL, 'home', '', false, NULL, 2, '2017-08-15T19:14:38.206434+00:00'::timestamptz, true, false, 1, 0) RETURNING "cms_title"."id"; args=('en-us', 'Home', None, None, None, 'home', '', False, None, 2, datetime.datetime(2017, 8, 15, 19, 14, 38, 206434, tzinfo=<UTC>), True, False, 1, 0)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'en-us' AND "cms_page"."path" BETWEEN '00020000' AND '0002ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 2) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('en-us', '00020000', '0002ZZZZ', False, 2)
(0.001) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.002) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 1 LIMIT 1; args=(1,)
(0.002) UPDATE "cms_title" SET "language" = 'en-us', "title" = 'Home', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'home', "path" = '', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 1, "creation_date" = '2017-08-15T19:14:38.206434+00:00'::timestamptz, "published" = true, "publisher_is_draft" = true, "publisher_public_id" = 2, "publisher_state" = 0 WHERE "cms_title"."id" = 1; args=('en-us', 'Home', 'home', '', False, 1, datetime.datetime(2017, 8, 15, 19, 14, 38, 206434, tzinfo=<UTC>), True, True, 2, 0, 1)
(0.010) SELECT "cms_cmsplugin"."id", "cms_cmsplugin"."path", "cms_cmsplugin"."depth", "cms_cmsplugin"."numchild", "cms_cmsplugin"."placeholder_id", "cms_cmsplugin"."parent_id", "cms_cmsplugin"."position", "cms_cmsplugin"."language", "cms_cmsplugin"."plugin_type", "cms_cmsplugin"."creation_date", "cms_cmsplugin"."changed_date" FROM "cms_cmsplugin" INNER JOIN "cms_placeholder" ON ("cms_cmsplugin"."placeholder_id" = "cms_placeholder"."id") INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE ("cms_cmsplugin"."language" = 'en-us' AND "cms_page_placeholders"."page_id" = 2) ORDER BY "cms_cmsplugin"."depth" DESC; args=('en-us', 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:38.977007+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 977007, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.007) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:39.031556+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:39.031556+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 39, 31556, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 31556, tzinfo=<UTC>), True)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.075586+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 75586, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.138796+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 138796, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.006) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = true AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:39.194831+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:39.194831+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(True, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 39, 194831, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 194831, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 1)) ORDER BY "cms_page"."path" ASC; args=(True, True, 1, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."id" = 1 AND "cms_page"."site_id" = 1); args=(True, 1, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.241865+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 241865, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."page_id" = 1; args=(1,)
(0.007) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", T4."id", T4."path", T4."depth", T4."numchild", T4."created_by", T4."changed_by", T4."parent_id", T4."creation_date", T4."changed_date", T4."publication_date", T4."publication_end_date", T4."in_navigation", T4."soft_root", T4."reverse_id", T4."navigation_extenders", T4."template", T4."site_id", T4."login_required", T4."limit_visibility_in_menu", T4."is_home", T4."application_urls", T4."application_namespace", T4."publisher_is_draft", T4."publisher_public_id", T4."languages", T4."revision_id", T4."xframe_options", T5."id", T5."path", T5."depth", T5."numchild", T5."created_by", T5."changed_by", T5."parent_id", T5."creation_date", T5."changed_date", T5."publication_date", T5."publication_end_date", T5."in_navigation", T5."soft_root", T5."reverse_id", T5."navigation_extenders", T5."template", T5."site_id", T5."login_required", T5."limit_visibility_in_menu", T5."is_home", T5."application_urls", T5."application_namespace", T5."publisher_is_draft", T5."publisher_public_id", T5."languages", T5."revision_id", T5."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") LEFT OUTER JOIN "cms_page" T4 ON ("cms_page"."publisher_public_id" = T4."id") LEFT OUTER JOIN "cms_page" T5 ON (T4."parent_id" = T5."id") WHERE ("cms_page"."id" = 1 AND NOT ("cms_page"."id" = 1) AND "cms_page"."site_id" = 1 AND "cms_title"."published" = true AND "cms_title"."language" = 'en-us') ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=(1, 1, 1, True, 'en-us')
(0.006) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" WHERE "djangocms_page_meta_pagemeta"."extended_object_id" = 1; args=(1,)
(0.005) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" WHERE "ungleich_ungleichpage"."extended_object_id" = 1; args=(1,)
(0.004) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" LEFT OUTER JOIN "djangocms_page_meta_pagemeta" T2 ON ("djangocms_page_meta_pagemeta"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("djangocms_page_meta_pagemeta"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.002) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" LEFT OUTER JOIN "ungleich_ungleichpage" T2 ON ("ungleich_ungleichpage"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("ungleich_ungleichpage"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 1 AND "cms_title"."language" = 'en-us'); args=(1, 'en-us')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 2; args=(2,)
(0.005) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" WHERE "djangocms_page_meta_titlemeta"."extended_object_id" = 1; args=(1,)
(0.004) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" INNER JOIN "cms_title" ON ("djangocms_page_meta_titlemeta"."extended_object_id" = "cms_title"."id") INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") LEFT OUTER JOIN "djangocms_page_meta_titlemeta" T4 ON ("djangocms_page_meta_titlemeta"."id" = T4."public_extension_id") WHERE ("cms_page"."publisher_is_draft" = false AND T4."id" IS NULL); args=(False,)
(0.001) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.003) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.442029+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 442029, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.007) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = true AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:39.502573+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:39.502573+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(True, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 39, 502573, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 502573, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 1)) ORDER BY "cms_page"."path" ASC; args=(True, True, 1, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."id" = 1 AND "cms_page"."site_id" = 1); args=(True, 1, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.557125+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 557125, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us', 0, 0, 1)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.001) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_page" T3 ON ("cms_page"."publisher_public_id" = T3."id") WHERE ("cms_page"."depth" = 1 AND "cms_page"."site_id" = 1 AND T3."parent_id" IS NULL AND "cms_page"."publisher_is_draft" = true AND "cms_page"."publisher_public_id" IS NOT NULL AND "cms_page"."path" < '0001') ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1, 1, True, '0001')
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."depth" = 1 AND "cms_page"."site_id" = 1 AND "cms_page"."publisher_is_draft" = false AND "cms_page"."path" < '0002') ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1, 1, False, '0002')
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.649208+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 649208, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.007) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:39.691231+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:39.691231+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 39, 691231, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 691231, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.730285+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 730285, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT "cms_title"."language", "cms_title"."id" FROM "cms_title" WHERE ("cms_title"."page_id" = 2 AND "cms_title"."language" = 'en-us'); args=(2, 'en-us')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 1 AND "cms_title"."language" = 'en-us'); args=(1, 'en-us')
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.001) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 2 LIMIT 1; args=(2,)
(0.004) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."id" = 2 LIMIT 1; args=(2,)
(0.003) UPDATE "cms_title" SET "language" = 'en-us', "title" = 'Home', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'home', "path" = '', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 2, "creation_date" = '2017-08-15T19:14:38.206434+00:00'::timestamptz, "published" = true, "publisher_is_draft" = false, "publisher_public_id" = 1, "publisher_state" = 0 WHERE "cms_title"."id" = 2; args=('en-us', 'Home', 'home', '', False, 2, datetime.datetime(2017, 8, 15, 19, 14, 38, 206434, tzinfo=<UTC>), True, False, 1, 0, 2)
(0.001) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 1 LIMIT 1; args=(1,)
(0.002) UPDATE "cms_title" SET "language" = 'en-us', "title" = 'Home', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'home', "path" = '', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 1, "creation_date" = '2017-08-15T19:14:38.206434+00:00'::timestamptz, "published" = true, "publisher_is_draft" = true, "publisher_public_id" = 2, "publisher_state" = 0 WHERE "cms_title"."id" = 1; args=('en-us', 'Home', 'home', '', False, 1, datetime.datetime(2017, 8, 15, 19, 14, 38, 206434, tzinfo=<UTC>), True, True, 2, 0, 1)
(0.002) SELECT "cms_cmsplugin"."id", "cms_cmsplugin"."path", "cms_cmsplugin"."depth", "cms_cmsplugin"."numchild", "cms_cmsplugin"."placeholder_id", "cms_cmsplugin"."parent_id", "cms_cmsplugin"."position", "cms_cmsplugin"."language", "cms_cmsplugin"."plugin_type", "cms_cmsplugin"."creation_date", "cms_cmsplugin"."changed_date" FROM "cms_cmsplugin" INNER JOIN "cms_placeholder" ON ("cms_cmsplugin"."placeholder_id" = "cms_placeholder"."id") INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE ("cms_cmsplugin"."language" = 'en-us' AND "cms_page_placeholders"."page_id" = 2) ORDER BY "cms_cmsplugin"."depth" DESC; args=('en-us', 2)
(0.001) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.001) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.854376+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 854376, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.008) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:39.894235+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:39.894235+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 39, 894235, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 894235, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:39.943282+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 39, 943282, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.005) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:40.043374+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 43374, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us', 0, 0, 1)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.007) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = true AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:40.105928+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:40.105928+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(True, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 105928, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 105928, tzinfo=<UTC>), True)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 1)) ORDER BY "cms_page"."path" ASC; args=(True, True, 1, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."id" = 1 AND "cms_page"."site_id" = 1); args=(True, 1, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:40.159475+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 0, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 159475, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us', 0, 0, 1)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."page_id" = 1; args=(1,)
(0.011) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", T4."id", T4."path", T4."depth", T4."numchild", T4."created_by", T4."changed_by", T4."parent_id", T4."creation_date", T4."changed_date", T4."publication_date", T4."publication_end_date", T4."in_navigation", T4."soft_root", T4."reverse_id", T4."navigation_extenders", T4."template", T4."site_id", T4."login_required", T4."limit_visibility_in_menu", T4."is_home", T4."application_urls", T4."application_namespace", T4."publisher_is_draft", T4."publisher_public_id", T4."languages", T4."revision_id", T4."xframe_options", T5."id", T5."path", T5."depth", T5."numchild", T5."created_by", T5."changed_by", T5."parent_id", T5."creation_date", T5."changed_date", T5."publication_date", T5."publication_end_date", T5."in_navigation", T5."soft_root", T5."reverse_id", T5."navigation_extenders", T5."template", T5."site_id", T5."login_required", T5."limit_visibility_in_menu", T5."is_home", T5."application_urls", T5."application_namespace", T5."publisher_is_draft", T5."publisher_public_id", T5."languages", T5."revision_id", T5."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") LEFT OUTER JOIN "cms_page" T4 ON ("cms_page"."publisher_public_id" = T4."id") LEFT OUTER JOIN "cms_page" T5 ON (T4."parent_id" = T5."id") WHERE ("cms_page"."id" = 1 AND NOT ("cms_page"."id" = 1) AND "cms_page"."site_id" = 1 AND "cms_title"."published" = true AND "cms_title"."language" = 'en-us') ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=(1, 1, 1, True, 'en-us')
(0.003) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" WHERE "djangocms_page_meta_pagemeta"."extended_object_id" = 1; args=(1,)
(0.002) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" WHERE "ungleich_ungleichpage"."extended_object_id" = 1; args=(1,)
(0.004) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" LEFT OUTER JOIN "djangocms_page_meta_pagemeta" T2 ON ("djangocms_page_meta_pagemeta"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("djangocms_page_meta_pagemeta"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.004) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" LEFT OUTER JOIN "ungleich_ungleichpage" T2 ON ("ungleich_ungleichpage"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("ungleich_ungleichpage"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 1 AND "cms_title"."language" = 'en-us'); args=(1, 'en-us')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 2; args=(2,)
(0.005) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" WHERE "djangocms_page_meta_titlemeta"."extended_object_id" = 1; args=(1,)
(0.007) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" INNER JOIN "cms_title" ON ("djangocms_page_meta_titlemeta"."extended_object_id" = "cms_title"."id") INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") LEFT OUTER JOIN "djangocms_page_meta_titlemeta" T4 ON ("djangocms_page_meta_titlemeta"."id" = T4."public_extension_id") WHERE ("cms_page"."publisher_is_draft" = false AND T4."id" IS NULL); args=(False,)
(0.004) SELECT "cms_title"."slug" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'en-us' AND "cms_page"."parent_id" = 1); args=('en-us', 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."depth" = 1 ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" IS NULL; args=()
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) INSERT INTO "cms_page" ("path", "depth", "numchild", "created_by", "changed_by", "parent_id", "creation_date", "changed_date", "publication_date", "publication_end_date", "in_navigation", "soft_root", "reverse_id", "navigation_extenders", "template", "site_id", "login_required", "limit_visibility_in_menu", "is_home", "application_urls", "application_namespace", "publisher_is_draft", "publisher_public_id", "languages", "revision_id", "xframe_options") VALUES ('0003', 1, 0, 'script', 'script', 1, '2017-08-15T19:14:40.624895+00:00'::timestamptz, '2017-08-15T19:14:40.625895+00:00'::timestamptz, NULL, NULL, true, false, NULL, NULL, 'base_glarus.html', 1, false, NULL, false, NULL, NULL, true, NULL, NULL, 0, 0) RETURNING "cms_page"."id"; args=('0003', 1, 0, 'script', 'script', 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 624895, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 625895, tzinfo=<UTC>), None, None, True, False, None, None, 'base_glarus.html', 1, False, None, False, None, None, True, None, None, 0, 0)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."id" = 3 AND NOT ("cms_page"."id" = 3) AND "cms_page"."site_id" = 1) ORDER BY "cms_page"."path" ASC; args=(3, 3, 1)
(0.005) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."page_id" = 3; args=(3,)
(0.005) UPDATE "cms_page" SET path='00010001'||SUBSTR(path, 5), depth=LENGTH('00010001'||SUBSTR(path, 5))/4 WHERE path LIKE '0003%'; args=['00010001', 5, '00010001', 5, 4, '0003%']
(0.004) UPDATE "cms_page" SET numchild=numchild+1 WHERE path='0001'; args=['0001']
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.007) UPDATE "cms_page" SET "path" = '00010001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 1, "creation_date" = '2017-08-15T19:14:40.624895+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:40.792030+00:00'::timestamptz, "publication_date" = NULL, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = NULL, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 3; args=('00010001', 2, 0, 'script', 'script', 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 624895, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 792030, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, True, 'en-us', 0, 0, 3)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'en-us' AND "cms_title"."page_id" = 1); args=('en-us', 1)
(0.003) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('en-us', 'Blog', NULL, NULL, NULL, 'blog', 'blog', false, NULL, 3, '2017-08-15T19:14:40.771015+00:00'::timestamptz, false, true, NULL, 1) RETURNING "cms_title"."id"; args=('en-us', 'Blog', None, None, None, 'blog', 'blog', False, None, 3, datetime.datetime(2017, 8, 15, 19, 14, 40, 771015, tzinfo=<UTC>), False, True, None, 1)
(0.010) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'en-us' AND "cms_page"."path" BETWEEN '000100010000' AND '00010001ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 3) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('en-us', '000100010000', '00010001ZZZZ', False, 3)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.007) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_page" T3 ON ("cms_page"."publisher_public_id" = T3."id") WHERE ("cms_page"."depth" = 2 AND "cms_page"."path" BETWEEN '00010000' AND '0001ZZZZ' AND "cms_page"."site_id" = 1 AND "cms_page"."publisher_public_id" IS NOT NULL AND "cms_page"."publisher_is_draft" = true AND "cms_page"."path" < '00010001' AND T3."parent_id" IN (2)) ORDER BY "cms_page"."path" DESC LIMIT 1; args=(2, '00010000', '0001ZZZZ', 1, True, '00010001', 2)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."depth" = 1 ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" IS NULL; args=()
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.005) INSERT INTO "cms_page" ("path", "depth", "numchild", "created_by", "changed_by", "parent_id", "creation_date", "changed_date", "publication_date", "publication_end_date", "in_navigation", "soft_root", "reverse_id", "navigation_extenders", "template", "site_id", "login_required", "limit_visibility_in_menu", "is_home", "application_urls", "application_namespace", "publisher_is_draft", "publisher_public_id", "languages", "revision_id", "xframe_options") VALUES ('0003', 1, 0, 'script', 'script', 2, '2017-08-15T19:14:41.080293+00:00'::timestamptz, '2017-08-15T19:14:41.081294+00:00'::timestamptz, '2017-08-15T19:14:40.994215+00:00'::timestamptz, NULL, true, false, NULL, NULL, 'base_glarus.html', 1, false, NULL, false, NULL, NULL, false, 3, NULL, 0, 0) RETURNING "cms_page"."id"; args=('0003', 1, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 41, 81294, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), None, True, False, None, None, 'base_glarus.html', 1, False, None, False, None, None, False, 3, None, 0, 0)
(0.005) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."id" = 4 AND NOT ("cms_page"."id" = 4) AND "cms_page"."site_id" = 1) ORDER BY "cms_page"."path" ASC; args=(4, 4, 1)
(0.005) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."page_id" = 4; args=(4,)
(0.005) UPDATE "cms_page" SET path='00020001'||SUBSTR(path, 5), depth=LENGTH('00020001'||SUBSTR(path, 5))/4 WHERE path LIKE '0003%'; args=['00020001', 5, '00020001', 5, 4, '0003%']
(0.007) UPDATE "cms_page" SET numchild=numchild+1 WHERE path='0002'; args=['0002']
(0.005) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.005) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."page_id" = 2; args=(2,)
(0.003) SELECT "cms_title"."language", "cms_title"."id" FROM "cms_title" WHERE ("cms_title"."page_id" = 4 AND "cms_title"."language" = 'en-us'); args=(4, 'en-us')
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 3 AND "cms_title"."language" = 'en-us'); args=(3, 'en-us')
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.006) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:41.371204+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 41, 371204, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, False, 3, 'en-us', 0, 0, 4)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'en-us' AND "cms_title"."page_id" = 2); args=('en-us', 2)
(0.007) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."id" IS NULL LIMIT 1; args=()
(0.003) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('en-us', 'Blog', NULL, NULL, NULL, 'blog', 'blog', false, NULL, 4, '2017-08-15T19:14:40.771015+00:00'::timestamptz, true, false, 3, 0) RETURNING "cms_title"."id"; args=('en-us', 'Blog', None, None, None, 'blog', 'blog', False, None, 4, datetime.datetime(2017, 8, 15, 19, 14, 40, 771015, tzinfo=<UTC>), True, False, 3, 0)
(0.005) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'en-us' AND "cms_page"."path" BETWEEN '000200010000' AND '00020001ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 3) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('en-us', '000200010000', '00020001ZZZZ', False, 3)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 3; args=(3,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.003) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 3 LIMIT 1; args=(3,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'en-us' AND "cms_title"."page_id" = 1); args=('en-us', 1)
(0.004) UPDATE "cms_title" SET "language" = 'en-us', "title" = 'Blog', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'blog', "path" = 'blog', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 3, "creation_date" = '2017-08-15T19:14:40.771015+00:00'::timestamptz, "published" = true, "publisher_is_draft" = true, "publisher_public_id" = 4, "publisher_state" = 0 WHERE "cms_title"."id" = 3; args=('en-us', 'Blog', 'blog', 'blog', False, 3, datetime.datetime(2017, 8, 15, 19, 14, 40, 771015, tzinfo=<UTC>), True, True, 4, 0, 3)
(0.005) SELECT "cms_cmsplugin"."id", "cms_cmsplugin"."path", "cms_cmsplugin"."depth", "cms_cmsplugin"."numchild", "cms_cmsplugin"."placeholder_id", "cms_cmsplugin"."parent_id", "cms_cmsplugin"."position", "cms_cmsplugin"."language", "cms_cmsplugin"."plugin_type", "cms_cmsplugin"."creation_date", "cms_cmsplugin"."changed_date" FROM "cms_cmsplugin" INNER JOIN "cms_placeholder" ON ("cms_cmsplugin"."placeholder_id" = "cms_placeholder"."id") INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE ("cms_cmsplugin"."language" = 'en-us' AND "cms_page_placeholders"."page_id" = 4) ORDER BY "cms_cmsplugin"."depth" DESC; args=('en-us', 4)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:41.673970+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 41, 673970, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, False, 3, 'en-us', 0, 0, 4)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.007) UPDATE "cms_page" SET "path" = '00010001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 1, "creation_date" = '2017-08-15T19:14:40.624895+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:41.814592+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 4, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 3; args=('00010001', 2, 0, 'script', 'script', 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 624895, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 41, 814592, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, True, 4, 'en-us', 0, 0, 3)
(0.004) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.006) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", T4."id", T4."path", T4."depth", T4."numchild", T4."created_by", T4."changed_by", T4."parent_id", T4."creation_date", T4."changed_date", T4."publication_date", T4."publication_end_date", T4."in_navigation", T4."soft_root", T4."reverse_id", T4."navigation_extenders", T4."template", T4."site_id", T4."login_required", T4."limit_visibility_in_menu", T4."is_home", T4."application_urls", T4."application_namespace", T4."publisher_is_draft", T4."publisher_public_id", T4."languages", T4."revision_id", T4."xframe_options", T5."id", T5."path", T5."depth", T5."numchild", T5."created_by", T5."changed_by", T5."parent_id", T5."creation_date", T5."changed_date", T5."publication_date", T5."publication_end_date", T5."in_navigation", T5."soft_root", T5."reverse_id", T5."navigation_extenders", T5."template", T5."site_id", T5."login_required", T5."limit_visibility_in_menu", T5."is_home", T5."application_urls", T5."application_namespace", T5."publisher_is_draft", T5."publisher_public_id", T5."languages", T5."revision_id", T5."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") LEFT OUTER JOIN "cms_page" T4 ON ("cms_page"."publisher_public_id" = T4."id") LEFT OUTER JOIN "cms_page" T5 ON (T4."parent_id" = T5."id") WHERE ("cms_page"."id" = 3 AND NOT ("cms_page"."id" = 3) AND "cms_page"."site_id" = 1 AND "cms_title"."published" = true AND "cms_title"."language" = 'en-us') ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=(3, 3, 1, True, 'en-us')
(0.002) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" WHERE "djangocms_page_meta_pagemeta"."extended_object_id" = 3; args=(3,)
(0.001) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" WHERE "ungleich_ungleichpage"."extended_object_id" = 3; args=(3,)
(0.004) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" LEFT OUTER JOIN "djangocms_page_meta_pagemeta" T2 ON ("djangocms_page_meta_pagemeta"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("djangocms_page_meta_pagemeta"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.005) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" LEFT OUTER JOIN "ungleich_ungleichpage" T2 ON ("ungleich_ungleichpage"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("ungleich_ungleichpage"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 3 AND "cms_title"."language" = 'en-us'); args=(3, 'en-us')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 4; args=(4,)
(0.002) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" WHERE "djangocms_page_meta_titlemeta"."extended_object_id" = 3; args=(3,)
(0.005) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" INNER JOIN "cms_title" ON ("djangocms_page_meta_titlemeta"."extended_object_id" = "cms_title"."id") INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") LEFT OUTER JOIN "djangocms_page_meta_titlemeta" T4 ON ("djangocms_page_meta_titlemeta"."id" = T4."public_extension_id") WHERE ("cms_page"."publisher_is_draft" = false AND T4."id" IS NULL); args=(False,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '00010001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 1, "creation_date" = '2017-08-15T19:14:40.624895+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:42.058331+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = true, "publisher_public_id" = 4, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 3; args=('00010001', 2, 0, 'script', 'script', 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 624895, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 42, 58331, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', True, 4, 'en-us', 0, 0, 3)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.003) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:42.145415+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 42, 145415, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', False, 3, 'en-us', 0, 0, 4)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.006) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.006) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_page" T3 ON ("cms_page"."publisher_public_id" = T3."id") WHERE ("cms_page"."depth" = 2 AND "cms_page"."path" BETWEEN '00010000' AND '0001ZZZZ' AND "cms_page"."site_id" = 1 AND "cms_page"."publisher_public_id" IS NOT NULL AND "cms_page"."publisher_is_draft" = true AND "cms_page"."path" < '00010001' AND T3."parent_id" IN (2)) ORDER BY "cms_page"."path" DESC LIMIT 1; args=(2, '00010000', '0001ZZZZ', 1, True, '00010001', 2)
(0.006) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."depth" = 2 AND "cms_page"."path" BETWEEN '00020000' AND '0002ZZZZ' AND "cms_page"."site_id" = 1 AND "cms_page"."publisher_is_draft" = false AND "cms_page"."path" < '00020001') ORDER BY "cms_page"."path" DESC LIMIT 1; args=(2, '00020000', '0002ZZZZ', 1, False, '00020001')
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:42.402710+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 42, 402710, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', False, 3, 'en-us', 0, 0, 4)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."page_id" = 2; args=(2,)
(0.003) SELECT "cms_title"."language", "cms_title"."id" FROM "cms_title" WHERE ("cms_title"."page_id" = 4 AND "cms_title"."language" = 'en-us'); args=(4, 'en-us')
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 3 AND "cms_title"."language" = 'en-us'); args=(3, 'en-us')
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 4 LIMIT 1; args=(4,)
(0.004) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'en-us' AND "cms_title"."page_id" = 2); args=('en-us', 2)
(0.006) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."id" = 4 LIMIT 1; args=(4,)
(0.004) UPDATE "cms_title" SET "language" = 'en-us', "title" = 'Blog', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'blog', "path" = 'blog', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 4, "creation_date" = '2017-08-15T19:14:40.771015+00:00'::timestamptz, "published" = true, "publisher_is_draft" = false, "publisher_public_id" = 3, "publisher_state" = 0 WHERE "cms_title"."id" = 4; args=('en-us', 'Blog', 'blog', 'blog', False, 4, datetime.datetime(2017, 8, 15, 19, 14, 40, 771015, tzinfo=<UTC>), True, False, 3, 0, 4)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 3; args=(3,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.002) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 3 LIMIT 1; args=(3,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'en-us' AND "cms_title"."page_id" = 1); args=('en-us', 1)
(0.006) UPDATE "cms_title" SET "language" = 'en-us', "title" = 'Blog', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'blog', "path" = 'blog', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 3, "creation_date" = '2017-08-15T19:14:40.771015+00:00'::timestamptz, "published" = true, "publisher_is_draft" = true, "publisher_public_id" = 4, "publisher_state" = 0 WHERE "cms_title"."id" = 3; args=('en-us', 'Blog', 'blog', 'blog', False, 3, datetime.datetime(2017, 8, 15, 19, 14, 40, 771015, tzinfo=<UTC>), True, True, 4, 0, 3)
(0.005) SELECT "cms_cmsplugin"."id", "cms_cmsplugin"."path", "cms_cmsplugin"."depth", "cms_cmsplugin"."numchild", "cms_cmsplugin"."placeholder_id", "cms_cmsplugin"."parent_id", "cms_cmsplugin"."position", "cms_cmsplugin"."language", "cms_cmsplugin"."plugin_type", "cms_cmsplugin"."creation_date", "cms_cmsplugin"."changed_date" FROM "cms_cmsplugin" INNER JOIN "cms_placeholder" ON ("cms_cmsplugin"."placeholder_id" = "cms_placeholder"."id") INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE ("cms_cmsplugin"."language" = 'en-us' AND "cms_page_placeholders"."page_id" = 4) ORDER BY "cms_cmsplugin"."depth" DESC; args=('en-us', 4)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.005) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.006) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:42.805488+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 42, 805488, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', False, 3, 'en-us', 0, 0, 4)
(0.005) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.005) UPDATE "cms_page" SET "path" = '00010001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 1, "creation_date" = '2017-08-15T19:14:40.624895+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:43.122201+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = true, "publisher_public_id" = 4, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 3; args=('00010001', 2, 0, 'script', 'script', 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 624895, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 43, 122201, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', True, 4, 'en-us', 0, 0, 3)
(0.003) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.010) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", T4."id", T4."path", T4."depth", T4."numchild", T4."created_by", T4."changed_by", T4."parent_id", T4."creation_date", T4."changed_date", T4."publication_date", T4."publication_end_date", T4."in_navigation", T4."soft_root", T4."reverse_id", T4."navigation_extenders", T4."template", T4."site_id", T4."login_required", T4."limit_visibility_in_menu", T4."is_home", T4."application_urls", T4."application_namespace", T4."publisher_is_draft", T4."publisher_public_id", T4."languages", T4."revision_id", T4."xframe_options", T5."id", T5."path", T5."depth", T5."numchild", T5."created_by", T5."changed_by", T5."parent_id", T5."creation_date", T5."changed_date", T5."publication_date", T5."publication_end_date", T5."in_navigation", T5."soft_root", T5."reverse_id", T5."navigation_extenders", T5."template", T5."site_id", T5."login_required", T5."limit_visibility_in_menu", T5."is_home", T5."application_urls", T5."application_namespace", T5."publisher_is_draft", T5."publisher_public_id", T5."languages", T5."revision_id", T5."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") LEFT OUTER JOIN "cms_page" T4 ON ("cms_page"."publisher_public_id" = T4."id") LEFT OUTER JOIN "cms_page" T5 ON (T4."parent_id" = T5."id") WHERE ("cms_page"."id" = 3 AND NOT ("cms_page"."id" = 3) AND "cms_page"."site_id" = 1 AND "cms_title"."published" = true AND "cms_title"."language" = 'en-us') ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=(3, 3, 1, True, 'en-us')
(0.003) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" WHERE "djangocms_page_meta_pagemeta"."extended_object_id" = 3; args=(3,)
(0.002) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" WHERE "ungleich_ungleichpage"."extended_object_id" = 3; args=(3,)
(0.005) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" LEFT OUTER JOIN "djangocms_page_meta_pagemeta" T2 ON ("djangocms_page_meta_pagemeta"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("djangocms_page_meta_pagemeta"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.004) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" LEFT OUTER JOIN "ungleich_ungleichpage" T2 ON ("ungleich_ungleichpage"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("ungleich_ungleichpage"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 3 AND "cms_title"."language" = 'en-us'); args=(3, 'en-us')
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 4; args=(4,)
(0.002) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" WHERE "djangocms_page_meta_titlemeta"."extended_object_id" = 3; args=(3,)
(0.006) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" INNER JOIN "cms_title" ON ("djangocms_page_meta_titlemeta"."extended_object_id" = "cms_title"."id") INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") LEFT OUTER JOIN "djangocms_page_meta_titlemeta" T4 ON ("djangocms_page_meta_titlemeta"."id" = T4."public_extension_id") WHERE ("cms_page"."publisher_is_draft" = false AND T4."id" IS NULL); args=(False,)
(0.002) SELECT "djangocms_blog_blogconfig_translation"."id", "djangocms_blog_blogconfig_translation"."language_code", "djangocms_blog_blogconfig_translation"."app_title", "djangocms_blog_blogconfig_translation"."object_name", "djangocms_blog_blogconfig_translation"."master_id" FROM "djangocms_blog_blogconfig_translation" WHERE ("djangocms_blog_blogconfig_translation"."master_id" = 1 AND "djangocms_blog_blogconfig_translation"."language_code" = 'de'); args=(1, 'de')
(0.002) INSERT INTO "djangocms_blog_blogconfig_translation" ("language_code", "app_title", "object_name", "master_id") VALUES ('de', 'Blog', 'Article', 1) RETURNING "djangocms_blog_blogconfig_translation"."id"; args=('de', 'Blog', 'Article', 1)
(0.006) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") WHERE ("cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:45.258126+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:45.258126+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND "cms_title"."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(1, datetime.datetime(2017, 8, 15, 19, 14, 45, 258126, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 258126, tzinfo=<UTC>), True)
(0.003) SELECT "cms_title"."slug" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'de' AND "cms_page"."parent_id" IS NULL); args=('de',)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:45.301654+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 301654, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us,de', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.006) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = true AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:45.361199+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:45.361694+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(True, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 45, 361199, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 361694, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 1)) ORDER BY "cms_page"."path" ASC; args=(True, True, 1, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."id" = 1 AND "cms_page"."site_id" = 1); args=(True, 1, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:45.411227+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 411227, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us,de', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.002) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('de', 'Home', NULL, NULL, NULL, 'home', '', false, NULL, 1, '2017-08-15T19:14:45.286644+00:00'::timestamptz, false, true, NULL, 1) RETURNING "cms_title"."id"; args=('de', 'Home', None, None, None, 'home', '', False, None, 1, datetime.datetime(2017, 8, 15, 19, 14, 45, 286644, tzinfo=<UTC>), False, True, None, 1)
(0.004) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'de' AND "cms_page"."path" BETWEEN '00010000' AND '0001ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 2) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('de', '00010000', '0001ZZZZ', False, 2)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_page" T3 ON ("cms_page"."publisher_public_id" = T3."id") WHERE ("cms_page"."depth" = 1 AND "cms_page"."site_id" = 1 AND T3."parent_id" IS NULL AND "cms_page"."publisher_is_draft" = true AND "cms_page"."publisher_public_id" IS NOT NULL AND "cms_page"."path" < '0001') ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1, 1, True, '0001')
(0.004) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."depth" = 1 AND "cms_page"."site_id" = 1 AND "cms_page"."publisher_is_draft" = false AND "cms_page"."path" < '0002') ORDER BY "cms_page"."path" DESC LIMIT 1; args=(1, 1, False, '0002')
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:45.539312+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 539312, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.006) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:45.594349+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:45.594349+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 45, 594349, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 594349, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:45.644382+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 644382, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT "cms_title"."language", "cms_title"."id" FROM "cms_title" WHERE ("cms_title"."page_id" = 2 AND "cms_title"."language" = 'de'); args=(2, 'de')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 1 AND "cms_title"."language" = 'de'); args=(1, 'de')
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:45.726437+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 726437, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us,de', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.006) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:45.781474+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:45.781474+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 45, 781474, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 781474, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:45.833008+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 833008, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us,de', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.004) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."id" IS NULL LIMIT 1; args=()
(0.002) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('de', 'Home', NULL, NULL, NULL, 'home', '', false, NULL, 2, '2017-08-15T19:14:45.286644+00:00'::timestamptz, true, false, 5, 0) RETURNING "cms_title"."id"; args=('de', 'Home', None, None, None, 'home', '', False, None, 2, datetime.datetime(2017, 8, 15, 19, 14, 45, 286644, tzinfo=<UTC>), True, False, 5, 0)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'de' AND "cms_page"."path" BETWEEN '00020000' AND '0002ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 2) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('de', '00020000', '0002ZZZZ', False, 2)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 5; args=(5,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.002) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 5 LIMIT 1; args=(5,)
(0.002) UPDATE "cms_title" SET "language" = 'de', "title" = 'Home', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'home', "path" = '', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 1, "creation_date" = '2017-08-15T19:14:45.286644+00:00'::timestamptz, "published" = true, "publisher_is_draft" = true, "publisher_public_id" = 6, "publisher_state" = 0 WHERE "cms_title"."id" = 5; args=('de', 'Home', 'home', '', False, 1, datetime.datetime(2017, 8, 15, 19, 14, 45, 286644, tzinfo=<UTC>), True, True, 6, 0, 5)
(0.003) SELECT "cms_cmsplugin"."id", "cms_cmsplugin"."path", "cms_cmsplugin"."depth", "cms_cmsplugin"."numchild", "cms_cmsplugin"."placeholder_id", "cms_cmsplugin"."parent_id", "cms_cmsplugin"."position", "cms_cmsplugin"."language", "cms_cmsplugin"."plugin_type", "cms_cmsplugin"."creation_date", "cms_cmsplugin"."changed_date" FROM "cms_cmsplugin" INNER JOIN "cms_placeholder" ON ("cms_cmsplugin"."placeholder_id" = "cms_placeholder"."id") INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE ("cms_cmsplugin"."language" = 'de' AND "cms_page_placeholders"."page_id" = 2) ORDER BY "cms_cmsplugin"."depth" DESC; args=('de', 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:45.977605+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 45, 977605, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us,de', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.006) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:46.028639+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:46.028639+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(False, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 46, 28639, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 28639, tzinfo=<UTC>), True)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 2)) ORDER BY "cms_page"."path" ASC; args=(False, True, 1, 2)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."id" = 2 AND "cms_page"."site_id" = 1); args=(False, 2, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0002', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:38.467138+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.075169+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = false, "publisher_public_id" = 1, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 2; args=('0002', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 38, 467138, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 75169, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, False, 1, 'en-us,de', 0, 0, 2)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 2; args=(2,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.142214+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 142214, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us,de', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.005) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = true AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:14:46.192748+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:14:46.192748+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND T4."published" = true AND "cms_page"."parent_id" IS NULL) ORDER BY "cms_page"."path" ASC LIMIT 1; args=(True, True, 1, datetime.datetime(2017, 8, 15, 19, 14, 46, 192748, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 192748, tzinfo=<UTC>), True)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."is_home" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."id" = 1)) ORDER BY "cms_page"."path" ASC; args=(True, True, 1, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."publisher_is_draft" = true AND "cms_page"."id" = 1 AND "cms_page"."site_id" = 1); args=(True, 1, 1)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 1; args=(1,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '0001', "depth" = 1, "numchild" = 1, "created_by" = 'script', "changed_by" = 'script', "parent_id" = NULL, "creation_date" = '2017-08-15T19:14:37.965754+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.241281+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:38.429114+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = true, "application_urls" = NULL, "application_namespace" = NULL, "publisher_is_draft" = true, "publisher_public_id" = 2, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 1; args=('0001', 1, 1, 'script', 'script', datetime.datetime(2017, 8, 15, 19, 14, 37, 965754, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 241281, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 38, 429114, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, True, True, 2, 'en-us,de', 0, 0, 1)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 1; args=(1,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."page_id" = 1; args=(1,)
(0.007) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", T4."id", T4."path", T4."depth", T4."numchild", T4."created_by", T4."changed_by", T4."parent_id", T4."creation_date", T4."changed_date", T4."publication_date", T4."publication_end_date", T4."in_navigation", T4."soft_root", T4."reverse_id", T4."navigation_extenders", T4."template", T4."site_id", T4."login_required", T4."limit_visibility_in_menu", T4."is_home", T4."application_urls", T4."application_namespace", T4."publisher_is_draft", T4."publisher_public_id", T4."languages", T4."revision_id", T4."xframe_options", T5."id", T5."path", T5."depth", T5."numchild", T5."created_by", T5."changed_by", T5."parent_id", T5."creation_date", T5."changed_date", T5."publication_date", T5."publication_end_date", T5."in_navigation", T5."soft_root", T5."reverse_id", T5."navigation_extenders", T5."template", T5."site_id", T5."login_required", T5."limit_visibility_in_menu", T5."is_home", T5."application_urls", T5."application_namespace", T5."publisher_is_draft", T5."publisher_public_id", T5."languages", T5."revision_id", T5."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") LEFT OUTER JOIN "cms_page" T4 ON ("cms_page"."publisher_public_id" = T4."id") LEFT OUTER JOIN "cms_page" T5 ON (T4."parent_id" = T5."id") WHERE ("cms_page"."path"::text LIKE '0001%' AND "cms_page"."depth" >= 1 AND NOT ("cms_page"."id" = 1) AND "cms_page"."site_id" = 1 AND "cms_title"."published" = true AND "cms_title"."language" = 'de') ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('0001%', 1, 1, 1, True, 'de')
(0.001) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" WHERE "djangocms_page_meta_pagemeta"."extended_object_id" = 1; args=(1,)
(0.001) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" WHERE "ungleich_ungleichpage"."extended_object_id" = 1; args=(1,)
(0.003) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" LEFT OUTER JOIN "djangocms_page_meta_pagemeta" T2 ON ("djangocms_page_meta_pagemeta"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("djangocms_page_meta_pagemeta"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.003) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" LEFT OUTER JOIN "ungleich_ungleichpage" T2 ON ("ungleich_ungleichpage"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("ungleich_ungleichpage"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 1 AND "cms_title"."language" = 'de'); args=(1, 'de')
(0.001) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 6; args=(6,)
(0.002) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" WHERE "djangocms_page_meta_titlemeta"."extended_object_id" = 5; args=(5,)
(0.004) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" INNER JOIN "cms_title" ON ("djangocms_page_meta_titlemeta"."extended_object_id" = "cms_title"."id") INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") LEFT OUTER JOIN "djangocms_page_meta_titlemeta" T4 ON ("djangocms_page_meta_titlemeta"."id" = T4."public_extension_id") WHERE ("cms_page"."publisher_is_draft" = false AND T4."id" IS NULL); args=(False,)
(0.003) SELECT "cms_title"."slug" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'de' AND "cms_page"."parent_id" IS NULL); args=('de',)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '00010001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 1, "creation_date" = '2017-08-15T19:14:40.624895+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.406892+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = true, "publisher_public_id" = 4, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 3; args=('00010001', 2, 0, 'script', 'script', 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 624895, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 406892, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', True, 4, 'en-us,de', 0, 0, 3)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'de' AND "cms_title"."page_id" = 1); args=('de', 1)
(0.002) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('de', 'Blog', NULL, NULL, NULL, 'blog', 'blog', false, NULL, 3, '2017-08-15T19:14:46.394383+00:00'::timestamptz, false, true, NULL, 1) RETURNING "cms_title"."id"; args=('de', 'Blog', None, None, None, 'blog', 'blog', False, None, 3, datetime.datetime(2017, 8, 15, 19, 14, 46, 394383, tzinfo=<UTC>), False, True, None, 1)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'de' AND "cms_page"."path" BETWEEN '000100010000' AND '00010001ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 3) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('de', '000100010000', '00010001ZZZZ', False, 3)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_page" T3 ON ("cms_page"."publisher_public_id" = T3."id") WHERE ("cms_page"."depth" = 2 AND "cms_page"."path" BETWEEN '00010000' AND '0001ZZZZ' AND "cms_page"."site_id" = 1 AND "cms_page"."publisher_public_id" IS NOT NULL AND "cms_page"."publisher_is_draft" = true AND "cms_page"."path" < '00010001' AND T3."parent_id" IN (2)) ORDER BY "cms_page"."path" DESC LIMIT 1; args=(2, '00010000', '0001ZZZZ', 1, True, '00010001', 2)
(0.003) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE ("cms_page"."depth" = 2 AND "cms_page"."path" BETWEEN '00020000' AND '0002ZZZZ' AND "cms_page"."site_id" = 1 AND "cms_page"."publisher_is_draft" = false AND "cms_page"."path" < '00020001') ORDER BY "cms_page"."path" DESC LIMIT 1; args=(2, '00020000', '0002ZZZZ', 1, False, '00020001')
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.540481+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 540481, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', False, 3, 'en-us', 0, 0, 4)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 2; args=(2,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."page_id" = 2; args=(2,)
(0.002) SELECT "cms_title"."language", "cms_title"."id" FROM "cms_title" WHERE ("cms_title"."page_id" = 4 AND "cms_title"."language" = 'de'); args=(4, 'de')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 3 AND "cms_title"."language" = 'de'); args=(3, 'de')
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.623536+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 623536, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', False, 3, 'en-us,de', 0, 0, 4)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'de' AND "cms_title"."page_id" = 2); args=('de', 2)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE "cms_title"."id" IS NULL LIMIT 1; args=()
(0.002) INSERT INTO "cms_title" ("language", "title", "page_title", "menu_title", "meta_description", "slug", "path", "has_url_overwrite", "redirect", "page_id", "creation_date", "published", "publisher_is_draft", "publisher_public_id", "publisher_state") VALUES ('de', 'Blog', NULL, NULL, NULL, 'blog', 'blog', false, NULL, 4, '2017-08-15T19:14:46.394383+00:00'::timestamptz, true, false, 7, 0) RETURNING "cms_title"."id"; args=('de', 'Blog', None, None, None, 'blog', 'blog', False, None, 4, datetime.datetime(2017, 8, 15, 19, 14, 46, 394383, tzinfo=<UTC>), True, False, 7, 0)
(0.003) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") WHERE ("cms_title"."language" = 'de' AND "cms_page"."path" BETWEEN '000200010000' AND '00020001ZZZZ' AND "cms_title"."has_url_overwrite" = false AND "cms_page"."depth" = 3) ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=('de', '000200010000', '00020001ZZZZ', False, 3)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 7; args=(7,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.002) SELECT "cms_title"."path" FROM "cms_title" WHERE "cms_title"."id" = 7 LIMIT 1; args=(7,)
(0.001) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."language" = 'de' AND "cms_title"."page_id" = 1); args=('de', 1)
(0.002) UPDATE "cms_title" SET "language" = 'de', "title" = 'Blog', "page_title" = NULL, "menu_title" = NULL, "meta_description" = NULL, "slug" = 'blog', "path" = 'blog', "has_url_overwrite" = false, "redirect" = NULL, "page_id" = 3, "creation_date" = '2017-08-15T19:14:46.394383+00:00'::timestamptz, "published" = true, "publisher_is_draft" = true, "publisher_public_id" = 8, "publisher_state" = 0 WHERE "cms_title"."id" = 7; args=('de', 'Blog', 'blog', 'blog', False, 3, datetime.datetime(2017, 8, 15, 19, 14, 46, 394383, tzinfo=<UTC>), True, True, 8, 0, 7)
(0.003) SELECT "cms_cmsplugin"."id", "cms_cmsplugin"."path", "cms_cmsplugin"."depth", "cms_cmsplugin"."numchild", "cms_cmsplugin"."placeholder_id", "cms_cmsplugin"."parent_id", "cms_cmsplugin"."position", "cms_cmsplugin"."language", "cms_cmsplugin"."plugin_type", "cms_cmsplugin"."creation_date", "cms_cmsplugin"."changed_date" FROM "cms_cmsplugin" INNER JOIN "cms_placeholder" ON ("cms_cmsplugin"."placeholder_id" = "cms_placeholder"."id") INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE ("cms_cmsplugin"."language" = 'de' AND "cms_page_placeholders"."page_id" = 4) ORDER BY "cms_cmsplugin"."depth" DESC; args=('de', 4)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 4; args=(4,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.003) UPDATE "cms_page" SET "path" = '00020001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 2, "creation_date" = '2017-08-15T19:14:41.080293+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.752142+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = false, "publisher_public_id" = 3, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 4; args=('00020001', 2, 0, 'script', 'script', 2, datetime.datetime(2017, 8, 15, 19, 14, 41, 80293, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 752142, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', False, 3, 'en-us,de', 0, 0, 4)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 4; args=(4,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" WHERE "cms_page"."id" = 3; args=(3,)
(0.001) SELECT DISTINCT "menus_cachekey"."key" FROM "menus_cachekey" WHERE "menus_cachekey"."site" = 1; args=(1,)
(0.002) UPDATE "cms_page" SET "path" = '00010001', "depth" = 2, "numchild" = 0, "created_by" = 'script', "changed_by" = 'script', "parent_id" = 1, "creation_date" = '2017-08-15T19:14:40.624895+00:00'::timestamptz, "changed_date" = '2017-08-15T19:14:46.819667+00:00'::timestamptz, "publication_date" = '2017-08-15T19:14:40.994215+00:00'::timestamptz, "publication_end_date" = NULL, "in_navigation" = true, "soft_root" = false, "reverse_id" = NULL, "navigation_extenders" = NULL, "template" = 'base_glarus.html', "site_id" = 1, "login_required" = false, "limit_visibility_in_menu" = NULL, "is_home" = false, "application_urls" = 'BlogApp', "application_namespace" = 'Blog', "publisher_is_draft" = true, "publisher_public_id" = 4, "languages" = 'en-us,de', "revision_id" = 0, "xframe_options" = 0 WHERE "cms_page"."id" = 3; args=('00010001', 2, 0, 'script', 'script', 1, datetime.datetime(2017, 8, 15, 19, 14, 40, 624895, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 46, 819667, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 14, 40, 994215, tzinfo=<UTC>), True, False, 'base_glarus.html', 1, False, False, 'BlogApp', 'Blog', True, 4, 'en-us,de', 0, 0, 3)
(0.002) SELECT "cms_placeholder"."id", "cms_placeholder"."slot", "cms_placeholder"."default_width" FROM "cms_placeholder" INNER JOIN "cms_page_placeholders" ON ("cms_placeholder"."id" = "cms_page_placeholders"."placeholder_id") WHERE "cms_page_placeholders"."page_id" = 3; args=(3,)
(0.007) SELECT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", T4."id", T4."path", T4."depth", T4."numchild", T4."created_by", T4."changed_by", T4."parent_id", T4."creation_date", T4."changed_date", T4."publication_date", T4."publication_end_date", T4."in_navigation", T4."soft_root", T4."reverse_id", T4."navigation_extenders", T4."template", T4."site_id", T4."login_required", T4."limit_visibility_in_menu", T4."is_home", T4."application_urls", T4."application_namespace", T4."publisher_is_draft", T4."publisher_public_id", T4."languages", T4."revision_id", T4."xframe_options", T5."id", T5."path", T5."depth", T5."numchild", T5."created_by", T5."changed_by", T5."parent_id", T5."creation_date", T5."changed_date", T5."publication_date", T5."publication_end_date", T5."in_navigation", T5."soft_root", T5."reverse_id", T5."navigation_extenders", T5."template", T5."site_id", T5."login_required", T5."limit_visibility_in_menu", T5."is_home", T5."application_urls", T5."application_namespace", T5."publisher_is_draft", T5."publisher_public_id", T5."languages", T5."revision_id", T5."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") LEFT OUTER JOIN "cms_page" T4 ON ("cms_page"."publisher_public_id" = T4."id") LEFT OUTER JOIN "cms_page" T5 ON (T4."parent_id" = T5."id") WHERE ("cms_page"."id" = 3 AND NOT ("cms_page"."id" = 3) AND "cms_page"."site_id" = 1 AND "cms_title"."published" = true AND "cms_title"."language" = 'de') ORDER BY "cms_page"."depth" ASC, "cms_page"."path" ASC; args=(3, 3, 1, True, 'de')
(0.001) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" WHERE "djangocms_page_meta_pagemeta"."extended_object_id" = 3; args=(3,)
(0.001) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" WHERE "ungleich_ungleichpage"."extended_object_id" = 3; args=(3,)
(0.003) SELECT "djangocms_page_meta_pagemeta"."id", "djangocms_page_meta_pagemeta"."public_extension_id", "djangocms_page_meta_pagemeta"."extended_object_id", "djangocms_page_meta_pagemeta"."image_id", "djangocms_page_meta_pagemeta"."og_type", "djangocms_page_meta_pagemeta"."og_author_id", "djangocms_page_meta_pagemeta"."og_author_url", "djangocms_page_meta_pagemeta"."og_author_fbid", "djangocms_page_meta_pagemeta"."og_publisher", "djangocms_page_meta_pagemeta"."og_app_id", "djangocms_page_meta_pagemeta"."twitter_author", "djangocms_page_meta_pagemeta"."twitter_site", "djangocms_page_meta_pagemeta"."twitter_type", "djangocms_page_meta_pagemeta"."gplus_author", "djangocms_page_meta_pagemeta"."gplus_type" FROM "djangocms_page_meta_pagemeta" LEFT OUTER JOIN "djangocms_page_meta_pagemeta" T2 ON ("djangocms_page_meta_pagemeta"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("djangocms_page_meta_pagemeta"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.003) SELECT "ungleich_ungleichpage"."id", "ungleich_ungleichpage"."public_extension_id", "ungleich_ungleichpage"."extended_object_id", "ungleich_ungleichpage"."image_id" FROM "ungleich_ungleichpage" LEFT OUTER JOIN "ungleich_ungleichpage" T2 ON ("ungleich_ungleichpage"."id" = T2."public_extension_id") INNER JOIN "cms_page" ON ("ungleich_ungleichpage"."extended_object_id" = "cms_page"."id") WHERE (T2."id" IS NULL AND "cms_page"."publisher_is_draft" = false); args=(False,)
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE ("cms_title"."page_id" = 3 AND "cms_title"."language" = 'de'); args=(3, 'de')
(0.002) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state" FROM "cms_title" WHERE "cms_title"."id" = 8; args=(8,)
(0.001) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" WHERE "djangocms_page_meta_titlemeta"."extended_object_id" = 7; args=(7,)
(0.004) SELECT "djangocms_page_meta_titlemeta"."id", "djangocms_page_meta_titlemeta"."public_extension_id", "djangocms_page_meta_titlemeta"."extended_object_id", "djangocms_page_meta_titlemeta"."image_id", "djangocms_page_meta_titlemeta"."keywords", "djangocms_page_meta_titlemeta"."description", "djangocms_page_meta_titlemeta"."og_description", "djangocms_page_meta_titlemeta"."twitter_description", "djangocms_page_meta_titlemeta"."gplus_description" FROM "djangocms_page_meta_titlemeta" INNER JOIN "cms_title" ON ("djangocms_page_meta_titlemeta"."extended_object_id" = "cms_title"."id") INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") LEFT OUTER JOIN "djangocms_page_meta_titlemeta" T4 ON ("djangocms_page_meta_titlemeta"."id" = T4."public_extension_id") WHERE ("cms_page"."publisher_is_draft" = false AND T4."id" IS NULL); args=(False,)
(0.005) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.073) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.008) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.661) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.040)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.009) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.016) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'oi8vqubh7y4xbkvaew0vd0wc7otkar8g' AND "django_session"."expire_date" > '2017-08-15T19:15:49.248412+00:00'::timestamptz); args=('oi8vqubh7y4xbkvaew0vd0wc7otkar8g', datetime.datetime(2017, 8, 15, 19, 15, 49, 248412, tzinfo=<UTC>))
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'True': True, 'None': None, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x000002A42ACE4C80>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002A42ACE5630>, 'MEDIA_URL': '/media/', 'request': <WSGIRequest: GET '/hosting/login?next=/hosting/my-virtual-machines'>, 'STATIC_URL': '/static/', 'TIME_ZONE': 'UTC', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000002A42ACBDEB8>>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'WARNING': 30}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002A42ACE7598>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002A42ACBDDD8>}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x000002A42ACBDCF8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'True': True, 'None': None, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x000002A42ACE4C80>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002A42ACE5630>, 'MEDIA_URL': '/media/', 'request': <WSGIRequest: GET '/hosting/login?next=/hosting/my-virtual-machines'>, 'STATIC_URL': '/static/', 'TIME_ZONE': 'UTC', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000002A42ACBDEB8>>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'WARNING': 30}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002A42ACE7598>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002A42ACBDDD8>}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x000002A42ACBDCF8>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000002A42ACD6DA0>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002A42ACBDD68>'
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'True': True, 'None': None, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x000002A42AED27B8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002A42AED7F98>, 'MEDIA_URL': '/media/', 'request': <WSGIRequest: GET '/hosting/login'>, 'STATIC_URL': '/static/', 'TIME_ZONE': 'UTC', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000002A42AE1CD68>>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'WARNING': 30}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002A42AEE1C80>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002A42AE1CDA0>}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x000002A42AE1CBE0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'True': True, 'None': None, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x000002A42AED27B8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002A42AED7F98>, 'MEDIA_URL': '/media/', 'request': <WSGIRequest: GET '/hosting/login'>, 'STATIC_URL': '/static/', 'TIME_ZONE': 'UTC', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000002A42AE1CD68>>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'WARNING': 30}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002A42AEE1C80>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002A42AE1CDA0>}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x000002A42AE1CBE0>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000002A42AED74A8>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002A42AE1CC88>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in '<QueryDict: {}>'
(0.026) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.036) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.046)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.004) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.022) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'tiwariav@hotmail.com'; args=('tiwariav@hotmail.com',)
(0.002) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" IS NULL; args=()
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB10992940>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB10C65378>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: POST '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB10A444A8>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB10C63A60>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB10C61F28>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB109F9470>, 'form': <HostingUserLoginForm bound=True, valid=False, fields=(email;password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB10992940>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB10C65378>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: POST '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB10A444A8>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB10C63A60>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB10C61F28>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB109F9470>, 'form': <HostingUserLoginForm bound=True, valid=False, fields=(email;password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB10AB68D0>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB10992780>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in '<QueryDict: {}>'
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/signup.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB10D99B38>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB10DAFF28>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/signup'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB10D99C18>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB10DAF598>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB10D9F748>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.SignupView object at 0x000001EB10D99710>, 'form': <HostingUserSignupForm bound=False, valid=Unknown, fields=(name;email;password;confirm_password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/signup.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB10D99B38>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB10DAFF28>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/signup'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB10D99C18>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB10DAF598>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB10D9F748>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.SignupView object at 0x000001EB10D99710>, 'form': <HostingUserSignupForm bound=False, valid=Unknown, fields=(name;email;password;confirm_password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB10D9FAC8>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/signup.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB10D99AC8>'
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB10E79860>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB10F2F598>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB10E79BE0>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB10F2F7B8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB10F3D3C8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB10E796A0>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB10E79860>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB10F2F598>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB10E79BE0>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB10F2F7B8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB10F3D3C8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB10E796A0>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB10F3D748>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB10E797B8>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in '<QueryDict: {}>'
(0.018) SELECT (1) AS "a" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'tiwariav@hotmail.com' LIMIT 1; args=('tiwariav@hotmail.com',)
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'tiwariav@hotmail.com' ORDER BY "membership_customuser"."id" ASC LIMIT 1; args=('tiwariav@hotmail.com',)
(0.005) INSERT INTO "membership_customuser" ("password", "last_login", "is_superuser", "site_id", "name", "email", "validated", "validation_slug", "is_admin") VALUES ('pbkdf2_sha256$24000$TUPccWSAA527$nHfsLQhNoxVfFKE0vToRgF4V4ige9L0BI8nd6MIfoRg=', NULL, false, 1, 'Arvind', 'tiwariav@hotmail.com', 0, '!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG', false) RETURNING "membership_customuser"."id"; args=('pbkdf2_sha256$24000$TUPccWSAA527$nHfsLQhNoxVfFKE0vToRgF4V4ige9L0BI8nd6MIfoRg=', None, False, 1, 'Arvind', 'tiwariav@hotmail.com', 0, '!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG', False)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB110678D0>, \'csrf_token\': <SimpleLazyObject: \'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB11017730>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/signup-validate\'>, \'user\': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB1100A8D0>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB1101AA60>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB110B45F8>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'view\': <hosting.views.SignupValidateView object at 0x000001EB11067898>, \'message\': \'Thank you for signing up. We have sent an email to you. Please follow the instructions in it to activate your account. Once activated, you can login using <a href="/hosting/login">login</a></a> <br />Go back to <a href="/en-us/datacenterlight/">Data Center Light</a>.\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB110ACAC8>}, {}]'
Exception while resolving variable 'site_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB110678D0>, \'csrf_token\': <SimpleLazyObject: \'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB11017730>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/signup-validate\'>, \'user\': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB1100A8D0>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB1101AA60>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB110B45F8>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'view\': <hosting.views.SignupValidateView object at 0x000001EB11067898>, \'message\': \'Thank you for signing up. We have sent an email to you. Please follow the instructions in it to activate your account. Once activated, you can login using <a href="/hosting/login">login</a></a> <br />Go back to <a href="/en-us/datacenterlight/">Data Center Light</a>.\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB110ACAC8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB110BABE0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB11067908>'
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.016) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."validation_slug" = '!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG' ORDER BY "membership_customuser"."id" ASC LIMIT 1; args=('!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG',)
(0.005) UPDATE "membership_customuser" SET "password" = 'pbkdf2_sha256$24000$TUPccWSAA527$nHfsLQhNoxVfFKE0vToRgF4V4ige9L0BI8nd6MIfoRg=', "last_login" = NULL, "is_superuser" = false, "site_id" = 1, "name" = 'Arvind', "email" = 'tiwariav@hotmail.com', "validated" = 1, "validation_slug" = '!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG', "is_admin" = false WHERE "membership_customuser"."id" = 2; args=('pbkdf2_sha256$24000$TUPccWSAA527$nHfsLQhNoxVfFKE0vToRgF4V4ige9L0BI8nd6MIfoRg=', False, 1, 'Arvind', 'tiwariav@hotmail.com', 1, '!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG', False, 2)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB110AC320>, \'csrf_token\': <SimpleLazyObject: \'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB111B1488>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/validate/!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG/\'>, \'user\': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB110AC438>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB11195B70>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB111AF208>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'validate_slug\': \'!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB110A6588>, \'view\': <hosting.views.SignupValidatedView object at 0x000001EB110AC0F0>, \'message\': \'Your account has been activated. <br /> You can now <a href="/hosting/login">login</a>.\'}, {}]'
Exception while resolving variable 'site_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB110AC320>, \'csrf_token\': <SimpleLazyObject: \'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB111B1488>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/validate/!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG/\'>, \'user\': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB110AC438>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB11195B70>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB111AF208>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'validate_slug\': \'!Z5QPe5SrhHdP3y7v96Jyz1MXhJx3HBKCXhONQatG\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB110A6588>, \'view\': <hosting.views.SignupValidatedView object at 0x000001EB110AC0F0>, \'message\': \'Your account has been activated. <br /> You can now <a href="/hosting/login">login</a>.\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB111BB828>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB110AC128>'
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB112B7E48>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB112CA268>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB112B7EF0>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB112CABF8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB110C70B8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB112B7C88>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB112B7E48>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB112CA268>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB112B7EF0>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB112CABF8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB110C70B8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB112B7C88>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB112B53C8>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB112B7D68>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in '<QueryDict: {}>'
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB113DD080>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB113F7400>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB113DD208>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB113EA9D8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB113E16A0>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB112EAF28>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB113DD080>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB113F7400>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB113DD208>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB113EA9D8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB113E16A0>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB112EAF28>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB1134EDD8>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB113DD048>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in '<QueryDict: {}>'
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB114D0EF0>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB1157EF28>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB114D0EB8>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB11522268>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB114D0A20>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB114D0D68>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB114D0EF0>, 'csrf_token': <SimpleLazyObject: 'p4wFWkWxrK8M9wk6xrfEYebXFeylUJou'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB1157EF28>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB114D0EB8>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB11522268>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB114D0A20>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB114D0D68>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB11574390>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB114D08D0>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in '<QueryDict: {}>'
(0.023) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'tiwariav@hotmail.com'; args=('tiwariav@hotmail.com',)
(0.003) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'tiwariav@hotmail.com'; args=('tiwariav@hotmail.com',)
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'tiwariav@hotmail.com'; args=('tiwariav@hotmail.com',)
(0.019) SELECT (1) AS "a" FROM "django_session" WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' LIMIT 1; args=('217ssownkpy0oyztqvldsm6h2rv5lto0',)
(0.008) INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('217ssownkpy0oyztqvldsm6h2rv5lto0', 'NTFlYTI2NjIyMDAzYjg4MGE2Y2VkZDQ1YmQ2MmQ0ZmM3MmU4Mzk3MDp7fQ==', '2017-08-29T19:19:09.262625+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', 'NTFlYTI2NjIyMDAzYjg4MGE2Y2VkZDQ1YmQ2MmQ0ZmM3MmU4Mzk3MDp7fQ==', datetime.datetime(2017, 8, 29, 19, 19, 9, 262625, tzinfo=<UTC>))
(0.003) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('217ssownkpy0oyztqvldsm6h2rv5lto0',)
(0.005) DELETE FROM "django_session" WHERE "django_session"."session_key" IN ('217ssownkpy0oyztqvldsm6h2rv5lto0'); args=('217ssownkpy0oyztqvldsm6h2rv5lto0',)
(0.005) UPDATE "membership_customuser" SET "last_login" = '2017-08-15T19:19:09.742660+00:00'::timestamptz WHERE "membership_customuser"."id" = 2; args=(datetime.datetime(2017, 8, 15, 19, 19, 9, 742660, tzinfo=<UTC>), 2)
(0.003) UPDATE "django_session" SET "session_data" = 'NTE0ZmVlODk2NjZlYzk0N2RlMDBkODNlZjBmMDhmYzg3YWQ1NGQxMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIn0=', "expire_date" = '2017-08-29T19:19:09.962038+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NTE0ZmVlODk2NjZlYzk0N2RlMDBkODNlZjBmMDhmYzg3YWQ1NGQxMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIn0=', datetime.datetime(2017, 8, 29, 19, 19, 9, 962038, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.001) INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('217ssownkpy0oyztqvldsm6h2rv5lto0', 'NTE0ZmVlODk2NjZlYzk0N2RlMDBkODNlZjBmMDhmYzg3YWQ1NGQxMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIn0=', '2017-08-29T19:19:09.962038+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', 'NTE0ZmVlODk2NjZlYzk0N2RlMDBkODNlZjBmMDhmYzg3YWQ1NGQxMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIn0=', datetime.datetime(2017, 8, 29, 19, 19, 9, 962038, tzinfo=<UTC>))
(0.017) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:10.319844+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 10, 319844, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB11405710>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB116746A8>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB1166AF28>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1159A588>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB11405710>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB116746A8>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB1166AF28>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1159A588>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB11677400>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB114C7BA8>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB11405710>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB116746A8>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB1166AF28>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1159A588>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB1159A470>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:22.236007+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 22, 236007, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:25.466445+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 25, 466445, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:28.203033+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 28, 203033, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:28.246063+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 28, 246063, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:28.391185+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 28, 391185, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:28.732704+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 28, 732704, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:28.872821+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 28, 872821, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:28.984914+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 28, 984914, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB127B3278>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB127A3E18>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB1270B730>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB127BACC0>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB127B3278>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB127A3E18>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB1270B730>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB127BACC0>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB127C5E48>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB127B31D0>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB127B3278>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB127A3E18>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB1270B730>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB127BACC0>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB127BAE10>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:37.686730+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 37, 686730, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('217ssownkpy0oyztqvldsm6h2rv5lto0',)
(0.006) DELETE FROM "django_session" WHERE "django_session"."session_key" IN ('217ssownkpy0oyztqvldsm6h2rv5lto0'); args=('217ssownkpy0oyztqvldsm6h2rv5lto0',)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB1281DF28>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB127DE2F0>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login?logged_out=true'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB1281D898>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB128318C8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB127D77B8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB12808048>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB1281DF28>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB127DE2F0>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/login?logged_out=true'>, 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x000001EB1281D898>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB128318C8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB127D77B8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.LoginView object at 0x000001EB12808048>, 'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB127DA048>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB1281DEB8>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in "<QueryDict: {'logged_out': ['true']}>"
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:40.353012+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 40, 353012, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.002) INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('217ssownkpy0oyztqvldsm6h2rv5lto0', 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', '2017-08-29T19:19:40.353012+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 40, 353012, tzinfo=<UTC>))
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:44.165459+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 44, 165459, tzinfo=<UTC>))
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:45.140521+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 45, 140521, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:45.190546+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 45, 190546, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:45.349687+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 45, 349687, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:45.708894+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 45, 708894, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:45.833514+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 45, 833514, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:45.961632+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 45, 961632, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12965F98>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB12A1F598>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB12A1A488>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12804C50>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12965F98>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12A1F598>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12A1A488>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12804C50>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB12A2BA20>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB12965C18>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12965F98>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12A1F598>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12A1A488>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12804C50>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB12804CC0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.004) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:19:54.521540+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 19, 54, 521540, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.029) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:19:58.150979+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 19, 58, 150979, tzinfo=<UTC>))
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/signup.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12AE8400>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB12AF5E18>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/signup'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB12AF5488>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12AE62B0>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.SignupView object at 0x000001EB12AE8EB8>, 'form': <HostingUserSignupForm bound=False, valid=Unknown, fields=(name;email;password;confirm_password)>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/signup.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12AE8400>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB12AF5E18>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/signup'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB12AF5488>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12AE62B0>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'view': <hosting.views.SignupView object at 0x000001EB12AE8EB8>, 'form': <HostingUserSignupForm bound=False, valid=Unknown, fields=(name;email;password;confirm_password)>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x000001EB12AEB6A0>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/signup.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB12AE84A8>'
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:01.394718+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 1, 394718, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:04.654587+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 4, 654587, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:05.815447+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 5, 815447, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:06.148363+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 6, 148363, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:06.325513+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 6, 325513, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:06.401582+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 6, 401582, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:06.592252+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 6, 592252, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:06.680813+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 6, 680813, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12C62240>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB12C6C158>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB12C6CB70>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12C60128>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12C62240>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12C6C158>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12C6CB70>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12C60128>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB12C73DD8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB12C62198>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12C62240>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12C6C158>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12C6CB70>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12C60128>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB12C604A8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:14.296933+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 14, 296933, tzinfo=<UTC>))
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) SELECT (1) AS "a" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'arvind3@example.com' LIMIT 1; args=('arvind3@example.com',)
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'arvind3@example.com' ORDER BY "membership_customuser"."id" ASC LIMIT 1; args=('arvind3@example.com',)
(0.006) INSERT INTO "membership_customuser" ("password", "last_login", "is_superuser", "site_id", "name", "email", "validated", "validation_slug", "is_admin") VALUES ('pbkdf2_sha256$24000$Ps4d8tvZcAPK$lUgOM63gTVTtiT5N8e3bnAyG+WPhXoNhSFBhLVL4MLU=', NULL, false, 1, 'Arvind', 'arvind3@example.com', 0, '!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ', false) RETURNING "membership_customuser"."id"; args=('pbkdf2_sha256$24000$Ps4d8tvZcAPK$lUgOM63gTVTtiT5N8e3bnAyG+WPhXoNhSFBhLVL4MLU=', None, False, 1, 'Arvind', 'arvind3@example.com', 0, '!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ', False)
(0.003) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:15.768736+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 15, 768736, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:16.130979+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 16, 130979, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12CD0198>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12C6B598>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/signup-validate\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12C6A268>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12D1E080>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'view\': <hosting.views.SignupValidateView object at 0x000001EB12C96DA0>, \'message\': \'Thank you for signing up. We have sent an email to you. Please follow the instructions in it to activate your account. Once activated, you can login using <a href="/hosting/login">login</a></a> <br />Go back to <a href="/en-us/datacenterlight/">Data Center Light</a>.\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB12CF1710>}, {}]'
Exception while resolving variable 'site_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12CD0198>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12C6B598>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/signup-validate\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12C6A268>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12D1E080>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'view\': <hosting.views.SignupValidateView object at 0x000001EB12C96DA0>, \'message\': \'Thank you for signing up. We have sent an email to you. Please follow the instructions in it to activate your account. Once activated, you can login using <a href="/hosting/login">login</a></a> <br />Go back to <a href="/en-us/datacenterlight/">Data Center Light</a>.\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB12CF1710>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB12D25AC8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB12CD03C8>'
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:17.096622+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 17, 96622, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:18.454646+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 18, 454646, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:22.943687+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 22, 943687, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:25.229253+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 25, 229253, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:25.267784+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 25, 267784, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.001) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:25.382872+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 25, 382872, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:25.717403+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 25, 717403, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:25.894558+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 25, 894558, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:26.001648+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 26, 1648, tzinfo=<UTC>))
(0.014) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:28.418261+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 28, 418261, tzinfo=<UTC>))
(0.014) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."validation_slug" = '!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ' ORDER BY "membership_customuser"."id" ASC LIMIT 1; args=('!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ',)
(0.007) UPDATE "membership_customuser" SET "password" = 'pbkdf2_sha256$24000$Ps4d8tvZcAPK$lUgOM63gTVTtiT5N8e3bnAyG+WPhXoNhSFBhLVL4MLU=', "last_login" = NULL, "is_superuser" = false, "site_id" = 1, "name" = 'Arvind', "email" = 'arvind3@example.com', "validated" = 1, "validation_slug" = '!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ', "is_admin" = false WHERE "membership_customuser"."id" = 3; args=('pbkdf2_sha256$24000$Ps4d8tvZcAPK$lUgOM63gTVTtiT5N8e3bnAyG+WPhXoNhSFBhLVL4MLU=', False, 1, 'Arvind', 'arvind3@example.com', 1, '!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ', False, 3)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12EB8780>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12EC22F0>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/validate/!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ/\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12EC2F28>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12C96F60>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'validate_slug\': \'!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB12EBB828>, \'view\': <hosting.views.SignupValidatedView object at 0x000001EB12E120F0>, \'message\': \'Your account has been activated. <br /> You can now <a href="/hosting/login">login</a>.\'}, {}]'
Exception while resolving variable 'site_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12EB8780>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12EC22F0>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/validate/!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ/\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12EC2F28>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12C96F60>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'validate_slug\': \'!DZh1kAFM48El8BRFEfPPLohz50HmHyRCxqO5PuiJ\', \'section_title\': <django.utils.functional.lazy.<locals>.__proxy__ object at 0x000001EB12EBB828>, \'view\': <hosting.views.SignupValidatedView object at 0x000001EB12E120F0>, \'message\': \'Your account has been activated. <br /> You can now <a href="/hosting/login">login</a>.\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB12ECAE80>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/signup_validate.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB12EB8710>'
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:31.886311+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 31, 886311, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:35.719901+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 35, 719901, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:35.836992+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 35, 836992, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:36.250273+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 36, 250273, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12C96048>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB12F729D8>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB12F722F0>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12F8F940>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12C96048>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12F729D8>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12F722F0>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12F8F940>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB12F7F908>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB12C96FD0>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12C96048>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB12F729D8>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB12F722F0>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB12F8F940>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB12F8FC50>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:39.996978+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 39, 996978, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12EBB828>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB13043C80>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB130437B8>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1305CDA0>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12EBB828>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB13043C80>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB130437B8>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1305CDA0>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB13064B70>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB12EBB208>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB12EBB828>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB13043C80>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB130437B8>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1305CDA0>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB1305CF28>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:49.192041+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 49, 192041, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:55.684298+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 55, 684298, tzinfo=<UTC>))
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.010) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:58.773836+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 58, 773836, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:58.870919+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 58, 870919, tzinfo=<UTC>))
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:59.067733+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 59, 67733, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:59.481573+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 59, 481573, tzinfo=<UTC>))
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:20:59.751374+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 20, 59, 751374, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:20:59.832935+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 20, 59, 832935, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB131DB198>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB131CB840>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB131BD950>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB131D93C8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB131DB198>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB131CB840>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB131BD950>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB131D93C8>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB131D2828>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB131DB278>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB131DB198>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB131CB840>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB131BD950>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB131D93C8>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB131D9EB8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:21:10.391460+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 21, 10, 391460, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:21:50.074851+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 21, 50, 74851, tzinfo=<UTC>))
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB132AB278>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB132A0A60>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB132A02F0>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1329F208>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB132AB278>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB132A0A60>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB132A02F0>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1329F208>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB132B5FD0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB132AB6D8>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB132AB278>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB132A0A60>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB132A02F0>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB1329F208>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB1329F518>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:22:01.747097+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 22, 1, 747097, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:22:06.511444+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 22, 6, 511444, tzinfo=<UTC>))
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:22:09.664186+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 22, 9, 664186, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:22:09.720738+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 22, 9, 720738, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:22:09.886856+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 22, 9, 886856, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:22:10.319191+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 22, 10, 319191, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:22:10.444310+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWJlMzlkNTRhZTI4MjU0ZjQ5MDE0N2MzMGViMjc3MTk3MGI2ZTNmMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 22, 10, 444310, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:22:10.555394+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 22, 10, 555394, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB134274A8>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001EB13435D90>, 'STATIC_URL': '/static/', 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'INFO': 20}, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001EB13325598>, 'CMS_MEDIA_URL': '/media/cms/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB132ABB38>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB134274A8>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB13435D90>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB13325598>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB132ABB38>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001EB1343AE48>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001EB13427400>'
Exception while resolving variable 'is_paginated' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'is_paginated'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [is_paginated] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001EB134274A8>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001EB13435D90>, \'STATIC_URL\': \'/static/\', \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'INFO\': 20}, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001EB13325598>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001EB132ABB38>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001EB134270B8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:22:24.142214+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGQ5MDkzMTg2MzFiNGUzNzkwNmE4MmIxNzAwZDk1ZDQ2MWY0MzUwOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 22, 24, 142214, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.006) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.047) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.023)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.005) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:23:35.920221+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 23, 35, 920221, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Internal Server Error: /hosting/my-virtual-machines
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\views\generic\base.py", line 68, in view
return self.dispatch(request, *args, **kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\auth\mixins.py", line 56, in dispatch
return super(LoginRequiredMixin, self).dispatch(request, *args, **kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\views\generic\base.py", line 88, in dispatch
return handler(request, *args, **kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\views\generic\list.py", line 159, in get
self.object_list = self.get_queryset()
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\views\generic\list.py", line 44, in get_queryset
'cls': self.__class__.__name__
django.core.exceptions.ImproperlyConfigured: VirtualMachinesPlanListView is missing a QuerySet. Define VirtualMachinesPlanListView.model, VirtualMachinesPlanListView.queryset, or override VirtualMachinesPlanListView.get_queryset().
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:23:40.859278+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 23, 40, 859278, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'hosting.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\hosting\\\\urls.py'> (None:hosting) ^hosting/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'MmViNTliYjU1NzI1NmMxZjY3ZTkyN2MwY2I0ZWI2MWE5NTZhNGZmNTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', "expire_date" = '2017-08-29T19:23:41.041400+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MmViNTliYjU1NzI1NmMxZjY3ZTkyN2MwY2I0ZWI2MWE5NTZhNGZmNTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', datetime.datetime(2017, 8, 29, 19, 23, 41, 41400, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.003) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:23:41.386517+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 23, 41, 386517, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.003) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.013) SELECT DISTINCT "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options" FROM "cms_page" INNER JOIN "cms_title" ON ("cms_page"."id" = "cms_title"."page_id") INNER JOIN "cms_title" T4 ON ("cms_page"."id" = T4."page_id") WHERE ("cms_page"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND ("cms_page"."publication_date" <= '2017-08-15T19:23:41.601529+00:00'::timestamptz OR "cms_page"."publication_date" IS NULL) AND ("cms_page"."publication_end_date" > '2017-08-15T19:23:41.601529+00:00'::timestamptz OR "cms_page"."publication_end_date" IS NULL) AND "cms_title"."published" = true AND T4."path" = 'favicon.ico'); args=(False, 1, datetime.datetime(2017, 8, 15, 19, 23, 41, 601529, tzinfo=<UTC>), datetime.datetime(2017, 8, 15, 19, 23, 41, 601529, tzinfo=<UTC>), True, 'favicon.ico')
Not Found: /en-us/favicon.ico/
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'hosting.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\hosting\\\\urls.py'> (None:hosting) ^hosting/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'datacenterlight.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\datacenterlight\\\\urls.py'> (None:datacenterlight) ^datacenterlight/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'alplora.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\alplora\\\\urls.py'> (None:alplora) ^alplora/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'membership.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\membership\\\\urls.py'> (None:None) ^membership/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'digitalglarus.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\digitalglarus\\\\urls.py'> (None:digitalglarus) ^digitalglarus/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'ungleich.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\ungleich\\\\urls.py'> (None:ungleich) ^blog/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'cms.wizards.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\cms\\\\wizards\\\\urls.py'> (None:None) ^cms_wizard/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 71, in _handle_no_page
resolve('%s$' % request.path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 534, in resolve
return get_resolver(urlconf).resolve(path)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'en-us/favicon.ico/$'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 149, in get_response
response = self.process_exception_by_middleware(e, request)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 147, in get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\views.py", line 45, in details
return _handle_no_page(request, slug)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\cms\page_rendering.py", line 75, in _handle_no_page
raise exc
django.http.response.Http404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern None ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <RegexURLPattern list> (admin:admin) ^admin/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'datacenterlight.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\datacenterlight\\urls.py'> (None:datacenterlight) ^datacenterlight/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLPattern redirect_hosting_login ^hosting/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'alplora.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\alplora\\urls.py'> (None:alplora) ^alplora/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'membership.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\membership\\urls.py'> (None:None) ^membership/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'digitalglarus.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\digitalglarus\\urls.py'> (None:digitalglarus) ^digitalglarus/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern landing ^$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich_page.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich_page\\urls.py'> (None:ungleich_page) ^>, <RegexURLPattern contact contact/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'ungleich.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\ungleich\\urls.py'> (None:ungleich) ^blog/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest ^blog/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-latest-feed ^blog/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-archive ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-author ^blog/author/(?P<username>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-category ^blog/category/(?P<category>[\w\.@+-]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged ^blog/tag/(?P<tag>[-\w]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern posts-tagged-feed ^blog/tag/(?P<tag>[-\w]+)/feed/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<category>\w[-\w]*)/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <AppRegexURLResolver 'app_resolver' (djangocms_blog:Blog) >, <RegexURLPattern post-detail ^blog/(?P<slug>\w[-\w]*)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLResolver <module 'cms.wizards.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\wizards\\urls.py'> (None:None) ^cms_wizard/>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-details-by-slug ^(?P<slug>[0-9A-Za-z-_.//]+)/$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>, <RegexURLResolver <module 'cms.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\cms\\urls.py'> (None:None) ^>, <RegexURLPattern pages-root ^$>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': '/en-us/favicon.ico/'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'MmViNTliYjU1NzI1NmMxZjY3ZTkyN2MwY2I0ZWI2MWE5NTZhNGZmNTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', "expire_date" = '2017-08-29T19:23:41.813312+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MmViNTliYjU1NzI1NmMxZjY3ZTkyN2MwY2I0ZWI2MWE5NTZhNGZmNTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', datetime.datetime(2017, 8, 29, 19, 23, 41, 813312, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.038) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.030)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.006) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:25:50.353328+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 25, 50, 353328, tzinfo=<UTC>))
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'debug': True, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000020EA3F890D0>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x0000020EA3F827B8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'ERROR': 40, 'SUCCESS': 25, 'DEBUG': 10, 'INFO': 20}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000020EA3CA0C88>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000020EA3F7D748>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'STATIC_URL': '/static/', 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'TIME_ZONE': 'UTC', 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'debug\': True, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000020EA3F890D0>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x0000020EA3F827B8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'ERROR\': 40, \'SUCCESS\': 25, \'DEBUG\': 10, \'INFO\': 20}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000020EA3CA0C88>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000020EA3F7D748>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'STATIC_URL\': \'/static/\', \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'TIME_ZONE\': \'UTC\', \'CMS_MEDIA_URL\': \'/media/cms/\'}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000020EA3F78518>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000020EA3CA0390>'
(0.004) UPDATE "django_session" SET "session_data" = 'MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', "expire_date" = '2017-08-29T19:26:03.656628+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', datetime.datetime(2017, 8, 29, 19, 26, 3, 656628, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:26:13.943808+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 26, 13, 943808, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', "expire_date" = '2017-08-29T19:26:14.425141+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', datetime.datetime(2017, 8, 29, 19, 26, 14, 425141, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:26:14.497689+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 26, 14, 497689, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', "expire_date" = '2017-08-29T19:26:14.665301+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', datetime.datetime(2017, 8, 29, 19, 26, 14, 665301, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:26:15.102092+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 26, 15, 102092, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', "expire_date" = '2017-08-29T19:26:15.278710+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', datetime.datetime(2017, 8, 29, 19, 26, 15, 278710, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0' AND "django_session"."expire_date" > '2017-08-15T19:26:15.472839+00:00'::timestamptz); args=('217ssownkpy0oyztqvldsm6h2rv5lto0', datetime.datetime(2017, 8, 15, 19, 26, 15, 472839, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'debug': True, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000020EA4081510>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x0000020EA4048B70>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'ERROR': 40, 'SUCCESS': 25, 'DEBUG': 10, 'INFO': 20}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000020EA4075128>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000020EA4076860>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'STATIC_URL': '/static/', 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'TIME_ZONE': 'UTC', 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'debug\': True, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000020EA4081510>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x0000020EA4048B70>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'ERROR\': 40, \'SUCCESS\': 25, \'DEBUG\': 10, \'INFO\': 20}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000020EA4075128>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000020EA4076860>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'STATIC_URL\': \'/static/\', \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'TIME_ZONE\': \'UTC\', \'CMS_MEDIA_URL\': \'/media/cms/\'}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000020EA40887F0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000020EA4075048>'
(0.003) UPDATE "django_session" SET "session_data" = 'MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', "expire_date" = '2017-08-29T19:26:23.044366+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTJiMmUwZjM5YThiZGE4MTExMTNmZmU2MjE1OWU0YTEyNWY4MDgxNTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIifQ==', datetime.datetime(2017, 8, 29, 19, 26, 23, 44366, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.006) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.033) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.007) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.041) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.022)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.005) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:27:56.283614+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 27, 56, 283614, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'None': None, 'True': True}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000220545B77B8>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'TIME_ZONE': 'UTC', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000220545F9390>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'STATIC_URL': '/static/', 'debug': True, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000220545B80D0>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000022054397898>, 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'WARNING': 30, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'None\': None, \'True\': True}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000220545B77B8>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'TIME_ZONE\': \'UTC\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000220545F9390>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'STATIC_URL\': \'/static/\', \'debug\': True, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000220545B80D0>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000022054397898>, \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000220545C4748>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002205435C978>'
(0.003) UPDATE "django_session" SET "session_data" = 'MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T19:28:04.917120+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 19, 28, 4, 917120, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:28:14.881383+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 28, 14, 881383, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:28:15.402809+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 28, 15, 402809, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:28:15.470872+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 28, 15, 470872, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T19:28:15.684041+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 19, 28, 15, 684041, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:28:16.098291+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 28, 16, 98291, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:28:16.434072+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 28, 16, 434072, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:28:16.531154+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 28, 16, 531154, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'None': None, 'True': True}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000220546C1D90>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'TIME_ZONE': 'UTC', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000220543D72B0>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'STATIC_URL': '/static/', 'debug': True, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000220546FC510>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000220546F9390>, 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'WARNING': 30, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'None\': None, \'True\': True}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000220546C1D90>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'TIME_ZONE\': \'UTC\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000220543D72B0>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'STATIC_URL\': \'/static/\', \'debug\': True, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000220546FC510>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000220546F9390>, \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000022054704A90>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000220546F9320>'
(0.003) UPDATE "django_session" SET "session_data" = 'MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T19:28:23.526943+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 19, 28, 23, 526943, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:42:37.584553+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 42, 37, 584553, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'None': None, 'True': True}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000220547C0D08>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'TIME_ZONE': 'UTC', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002205480C0B8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'STATIC_URL': '/static/', 'debug': True, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000220547C0488>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000220546E97F0>, 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'WARNING': 30, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'None\': None, \'True\': True}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000220547C0D08>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'TIME_ZONE\': \'UTC\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002205480C0B8>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'STATIC_URL\': \'/static/\', \'debug\': True, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000220547C0488>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000220546E97F0>, \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000220546E4438>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000220546E90B8>'
(0.003) UPDATE "django_session" SET "session_data" = 'NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:42:46.034434+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 42, 46, 34434, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:42:58.953864+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 42, 58, 953864, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T19:42:59.369157+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 19, 42, 59, 369157, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:42:59.431200+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 42, 59, 431200, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:42:59.582800+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 42, 59, 582800, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:42:59.964050+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 42, 59, 964050, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T19:43:00.110170+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 19, 43, 0, 110170, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:43:00.215468+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 43, 0, 215468, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'None': None, 'True': True}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000220548638C8>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'TIME_ZONE': 'UTC', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000022054874CF8>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'STATIC_URL': '/static/', 'debug': True, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000022054863488>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002205487A9B0>, 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'WARNING': 30, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'None\': None, \'True\': True}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000220548638C8>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'TIME_ZONE\': \'UTC\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000022054874CF8>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'STATIC_URL\': \'/static/\', \'debug\': True, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000022054863488>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002205487A9B0>, \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000220548E59B0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002205487A860>'
(0.002) UPDATE "django_session" SET "session_data" = 'NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:43:05.649503+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 43, 5, 649503, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:45:45.839085+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 45, 45, 839085, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'None': None, 'True': True}, {'sql_queries': <function debug.<locals>.<lambda> at 0x0000022054935BF8>, 'csrf_token': <SimpleLazyObject: 'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV'>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'TIME_ZONE': 'UTC', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000022054953D30>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'STATIC_URL': '/static/', 'debug': True, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000220549592F0>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000220549460F0>, 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'WARNING': 30, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'None\': None, \'True\': True}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x0000022054935BF8>, \'csrf_token\': <SimpleLazyObject: \'zJaXn19OZ60Ls27YCSLlXaozMlDW58GV\'>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'TIME_ZONE\': \'UTC\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000022054953D30>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'STATIC_URL\': \'/static/\', \'debug\': True, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000220549592F0>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000220549460F0>, \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000022054950470>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000022054946B70>'
(0.004) UPDATE "django_session" SET "session_data" = 'MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T19:45:53.924342+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 19, 45, 53, 924342, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.003) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:46:02.570239+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 46, 2, 570239, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.002) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:46:02.738379+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 46, 2, 738379, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:46:03.095366+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 46, 3, 95366, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T19:46:03.473758+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MTQ4YjY2MTkwMjk1NzExN2JiYmE0ZTdhMTY4NWYxNGU5MzcyN2Q2YTp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 19, 46, 3, 473758, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:46:03.650904+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 46, 3, 650904, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) UPDATE "django_session" SET "session_data" = 'NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-29T19:46:04.014782+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzljZWJlODk1MDFhZmIxZWUwMDZiMmVhNGFjMmYyNmZlNzI1YWEzMDp7Il9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 29, 19, 46, 4, 14782, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T19:46:04.429315+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 19, 46, 4, 429315, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.006) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.030) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.017)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.018) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:01:57.185674+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 1, 57, 185674, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210E8C080>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210E452F0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E426D8>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210E8C080>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210E452F0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E426D8>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210EC9390>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210E8EFD0>'
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:04.997807+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 4, 997807, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:10.748033+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 10, 748033, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:10.991281+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 10, 991281, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:11.053323+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 11, 53323, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:11.251964+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 11, 251964, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:11.615817+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 11, 615817, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:11.787661+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 11, 787661, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:11.866229+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 11, 866229, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F1E128>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21048>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F21158>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210ECD6A0>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F1E128>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21048>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F21158>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210ECD6A0>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F8DB00>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F1E080>'
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:18.879287+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 18, 879287, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:37.242062+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 37, 242062, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86550>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0EA0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86080>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86550>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0EA0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86080>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F2DE48>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F86860>'
(0.002) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:44.745127+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 44, 745127, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:51.050902+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 51, 50902, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:51.428693+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 51, 428693, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.019) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:51.494753+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 51, 494753, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:51.704400+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 51, 704400, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:52.094662+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 52, 94662, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:52.327317+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 52, 327317, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.017) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:02:52.385855+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 2, 52, 385855, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC9438>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0E18>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E426D8>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC9438>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0E18>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E426D8>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F82710>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210EC92E8>'
(0.002) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:02:59.823759+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 2, 59, 823759, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:06:48.784884+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 6, 48, 784884, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86EF0>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0EA0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0F28>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E2D5F8>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86EF0>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0EA0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0F28>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E2D5F8>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F77780>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210ECD668>'
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:06:55.738649+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 6, 55, 738649, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:07:02.537287+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 7, 2, 537287, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:07:02.687906+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 7, 2, 687906, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:07:03.039416+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 7, 3, 39416, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:07:03.134479+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 7, 3, 134479, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:07:03.291585+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 7, 3, 291585, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:07:03.382144+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 7, 3, 382144, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:07:03.468702+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 7, 3, 468702, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F46D30>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F82748>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F46D30>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F82748>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F865C0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F46F98>'
(0.003) UPDATE "django_session" SET "session_data" = 'MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:07:10.109029+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MWE1NGY0Y2RhMmNiZDgxYjJiY2ZhMDc2NWM1ZjU2ZjUwMTc4MDRhNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIyIiwiX2F1dGhfdXNlcl9oYXNoIjoiZmU4MWU2ODAzNDIwMzY5MzI1YjI2M2M2MGY3OTE5ZWQ2ZDY4ZDhmMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 7, 10, 109029, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:14:04.501883+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 14, 4, 501883, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86550>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0EA0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86438>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86550>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0EA0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86438>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210E42F98>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F86588>'
(0.003) UPDATE "django_session" SET "session_data" = 'YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:14:12.369017+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 14, 12, 369017, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.003) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:14:18.946022+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 14, 18, 946022, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.002) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:14:19.006069+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 14, 19, 6069, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:14:19.345245+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 14, 19, 345245, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:14:19.500383+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 14, 19, 500383, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:14:19.593511+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 14, 19, 593511, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:14:19.763633+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YjljYzZjODdkNDYxOWU5M2ZjZmZiOTc2YjdhNjk1ZmEyMDliNjhhZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 14, 19, 763633, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:14:19.896742+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 14, 19, 896742, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC9BA8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F598>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F85C50>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC9BA8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F598>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F85C50>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F77080>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210EC9E80>'
(0.003) UPDATE "django_session" SET "session_data" = 'ZTBiYmZlNjJlYWVhNDA2MWE2MTA1OWRmMDlkYzliZTcyYTg5ODU1Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T20:14:26.398450+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZTBiYmZlNjJlYWVhNDA2MWE2MTA1OWRmMDlkYzliZTcyYTg5ODU1Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 20, 14, 26, 398450, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:18:02.552924+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 18, 2, 552924, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F77668>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2FBF8>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F77B70>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F77668>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2FBF8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F77B70>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F82550>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F770B8>'
(0.003) UPDATE "django_session" SET "session_data" = 'ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:18:10.589448+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 18, 10, 589448, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:18:19.388044+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 18, 19, 388044, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:18:19.594682+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 18, 19, 594682, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:18:20.107523+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 18, 20, 107523, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:18:20.227604+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 18, 20, 227604, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:18:20.289646+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 18, 20, 289646, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:18:20.381707+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZWJlMjZjN2RjZmJlOTUyZjk2MzY4Mjk5YzljNGE0MTE5NWVjZjljYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 18, 20, 381707, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.004) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:18:20.714941+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 18, 20, 714941, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.002) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F467F0>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FB70>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F840>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F77E10>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F467F0>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FB70>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F840>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F77E10>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F85F60>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F46F28>'
(0.002) UPDATE "django_session" SET "session_data" = 'NGQzN2M1ZTYzZTZhMWY2Njc3N2JmMDRmOTNjYTlmNmMxNjk4MWUyMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:18:27.410028+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NGQzN2M1ZTYzZTZhMWY2Njc3N2JmMDRmOTNjYTlmNmMxNjk4MWUyMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 18, 27, 410028, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.016) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:22:05.860261+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 22, 5, 860261, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F859E8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F7B8>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F840>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F85B00>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F859E8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F7B8>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F840>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F85B00>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F38470>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F85B70>'
(0.003) UPDATE "django_session" SET "session_data" = 'ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T20:22:13.690478+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 20, 22, 13, 690478, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:22:22.750629+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 22, 22, 750629, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T20:22:22.946789+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 20, 22, 22, 946789, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:22:23.298651+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 22, 23, 298651, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T20:22:23.413252+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 20, 22, 23, 413252, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:22:23.544354+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 22, 23, 544354, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T20:22:23.640240+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGEzNGE1ZjdkOTQ1N2E4YTNjM2ZmMDEwOGUzMWIxNTVhYmIyZGU2Nzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 20, 22, 23, 640240, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.017) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:22:23.760500+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 22, 23, 760500, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC92E8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FC80>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F950>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F46908>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC92E8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FC80>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F950>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F46908>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F4C668>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210EC90B8>'
(0.003) UPDATE "django_session" SET "session_data" = 'YmY4M2YzOWIxMWYyODMyOTFkOWI5ZDVmOWVkNThkMTQ2YmIwODI5Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:22:30.431164+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YmY4M2YzOWIxMWYyODMyOTFkOWI5ZDVmOWVkNThkMTQ2YmIwODI5Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 22, 30, 431164, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:56:19.545812+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 56, 19, 545812, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F380B8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FEA0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F510>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F466D8>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F380B8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FEA0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F510>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F466D8>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F4CDD8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F385C0>'
(0.004) UPDATE "django_session" SET "session_data" = 'NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:56:26.787658+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 56, 26, 787658, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:56:35.211830+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 56, 35, 211830, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:56:35.429985+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 56, 35, 429985, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:56:35.801556+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 56, 35, 801556, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) UPDATE "django_session" SET "session_data" = 'NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:56:35.943460+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 56, 35, 943460, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.035) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:56:36.057072+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 56, 36, 57072, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) UPDATE "django_session" SET "session_data" = 'NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:56:36.226203+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NmMwZTQ2YWYwNWUzZTBhOWMzNGUwODQ3MGNjNTFlY2UzMzc4MDk0NDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 56, 36, 226203, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:56:36.311278+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 56, 36, 311278, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC9780>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0EA0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210D79470>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210EC9780>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EE0F28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0EA0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210D79470>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210ECD2B0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210EC9128>'
(0.003) UPDATE "django_session" SET "session_data" = 'NWYwNzQ3NWI1MDdmNjFjNTFjNGI3MjVkYjAxM2U5ZGEyZmNkODQxNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T20:56:44.603520+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWYwNzQ3NWI1MDdmNjFjNTFjNGI3MjVkYjAxM2U5ZGEyZmNkODQxNzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 20, 56, 44, 603520, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:57:22.903629+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 57, 22, 903629, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F14C18>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21EA0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F212F0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F4C940>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F14C18>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21EA0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F212F0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F4C940>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F38908>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F14C50>'
(0.004) UPDATE "django_session" SET "session_data" = 'NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:57:30.609797+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 57, 30, 609797, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.017) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:57:38.086481+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 57, 38, 86481, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.004) UPDATE "django_session" SET "session_data" = 'NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:57:38.403717+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 57, 38, 403717, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:57:38.472787+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 57, 38, 472787, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) UPDATE "django_session" SET "session_data" = 'NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:57:38.667395+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 57, 38, 667395, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:57:39.062156+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 57, 39, 62156, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) UPDATE "django_session" SET "session_data" = 'NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T20:57:39.255285+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDM4NTAwYTI0ODMzZjU4N2EyN2ZkN2UyZWJiZGQyYzU2NjVmMDVlYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 20, 57, 39, 255285, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T20:57:39.360355+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 20, 57, 39, 360355, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210ECD940>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EBEAE8>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0E18>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E2DE80>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210ECD940>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EBEAE8>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EE0E18>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E2DE80>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F86390>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210ECDDA0>'
(0.003) UPDATE "django_session" SET "session_data" = 'OWE5Yjk5NDEwYTk1MTQyMWJiOTgwOTc1NmIyMGQ1ZDI1YjQ3YjM1Yjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T20:57:45.766991+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OWE5Yjk5NDEwYTk1MTQyMWJiOTgwOTc1NmIyMGQ1ZDI1YjQ3YjM1Yjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 20, 57, 45, 766991, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.024) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:01:01.729174+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 1, 1, 729174, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86438>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F212F0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F21158>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F85C18>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F86438>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F212F0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F21158>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F85C18>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210EC9E80>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F86CF8>'
(0.006) UPDATE "django_session" SET "session_data" = 'MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:01:09.706700+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 1, 9, 706700, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:01:18.701976+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 1, 18, 701976, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:01:18.904639+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 1, 18, 904639, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:01:18.984200+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 1, 18, 984200, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:01:19.173490+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 1, 19, 173490, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:01:19.590835+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 1, 19, 590835, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:01:19.813485+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MGNjZDZkZmViOTk4MjZiZmM2NTAxNzgxYmZkNjk4MzA2Zjg2MzZkOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 1, 19, 813485, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:01:19.876529+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 1, 19, 876529, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F77908>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EBEAE8>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E9F278>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F77908>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EBEAE8>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E9F278>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210E2DD68>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F77B38>'
(0.004) UPDATE "django_session" SET "session_data" = 'NzNiOGY5YjcxYTNhOWY4MTQ3NzUwNWE3MTA3MmI4MmRiYWNiMWIwYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:01:26.600192+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzNiOGY5YjcxYTNhOWY4MTQ3NzUwNWE3MTA3MmI4MmRiYWNiMWIwYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 1, 26, 600192, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:04:08.833564+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 4, 8, 833564, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210ECD198>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21158>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F21EA0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F4CF98>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210ECD198>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21158>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F21EA0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F4CF98>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FA42E8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210ECD5F8>'
(0.003) UPDATE "django_session" SET "session_data" = 'MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:04:15.426009+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 4, 15, 426009, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:04:25.018386+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 4, 25, 18386, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:04:25.367637+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 4, 25, 367637, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:04:25.410166+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 4, 25, 410166, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:04:25.524743+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 4, 25, 524743, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:04:25.889986+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 4, 25, 889986, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:04:25.984049+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MDFkN2UzYTk5ZThhZTI2YjI1MDM3ZTA1ZWQ0NDVlMGQxZDI2Y2JjYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 4, 25, 984049, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:04:26.150165+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 4, 26, 150165, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FAFAC8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EBEAE8>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210EAC208>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FAFAC8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EBEAE8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210EAC208>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F82E80>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210FAFBA8>'
(0.005) UPDATE "django_session" SET "session_data" = 'MzU1NjBjNTAyNmQ1MTYyYWVkMmIwYThlMWEzOGEzYzYzZWJhZTAxMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:04:32.473426+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('MzU1NjBjNTAyNmQ1MTYyYWVkMmIwYThlMWEzOGEzYzYzZWJhZTAxMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 4, 32, 473426, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:06:46.883239+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 6, 46, 883239, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F464E0>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21EA0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F212F0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F463C8>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F464E0>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21EA0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F212F0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F463C8>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F85470>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F46080>'
(0.004) UPDATE "django_session" SET "session_data" = 'ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:06:54.846930+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 6, 54, 846930, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:07:05.107772+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 7, 5, 107772, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:07:05.266893+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 7, 5, 266893, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:07:05.357084+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 7, 5, 357084, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:07:05.437149+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 7, 5, 437149, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:07:05.609413+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 7, 5, 609413, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:07:05.713491+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZTQyY2UwMzYxZTFlZjFiMWNlODZhN2VmODU2NzE2ZDhmYWMwNGFlOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 7, 5, 713491, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:07:05.785052+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 7, 5, 785052, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F4C7F0>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210DE1510>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EBEAE8>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86E48>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F4C7F0>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210DE1510>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EBEAE8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86E48>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FA4C50>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F4CCC0>'
(0.003) UPDATE "django_session" SET "session_data" = 'ZjUyODk1NGIwZGFiNjEwNTY3NTMwNDdmMTlmNGRmN2UyZDU4NTE5ZDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:07:12.550312+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZjUyODk1NGIwZGFiNjEwNTY3NTMwNDdmMTlmNGRmN2UyZDU4NTE5ZDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 7, 12, 550312, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:09:22.639880+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 9, 22, 639880, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA4DD8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21EA0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F210D0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E8EF60>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA4DD8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F21EA0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F210D0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E8EF60>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F1E3C8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210FA41D0>'
(0.004) UPDATE "django_session" SET "session_data" = 'Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:09:29.995472+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 9, 29, 995472, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:09:36.819812+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 9, 36, 819812, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.004) UPDATE "django_session" SET "session_data" = 'Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:09:37.035504+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 9, 37, 35504, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:09:37.098556+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 9, 37, 98556, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:09:37.255687+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 9, 37, 255687, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:09:37.617926+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 9, 37, 617926, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) UPDATE "django_session" SET "session_data" = 'Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:09:37.775072+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('Y2E0OTQwMzhkZGExZmY2ZDQ3ZTgxZjZkNGMyMTNkOGNjNjg2NDRhMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 9, 37, 775072, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:09:37.880163+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 9, 37, 880163, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F46710>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F211E0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F212F0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F4CFD0>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F46710>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F211E0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F212F0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F4CFD0>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F46438>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F462E8>'
(0.003) UPDATE "django_session" SET "session_data" = 'OGNkOGE5ZTU3MTY3NTg2MjBlMTI4ZTJiZjY0ODIxMTgyZDZiMjkyZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:09:44.131119+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OGNkOGE5ZTU3MTY3NTg2MjBlMTI4ZTJiZjY0ODIxMTgyZDZiMjkyZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 9, 44, 131119, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:16:08.249439+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 16, 8, 249439, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F1E828>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E99EA0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210C3BF28>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E56748>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F1E828>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E99EA0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210C3BF28>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210E56748>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F82390>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F1EDD8>'
(0.004) UPDATE "django_session" SET "session_data" = 'YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:16:23.290580+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 16, 23, 290580, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:16:34.165783+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 16, 34, 165783, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:16:34.322917+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 16, 34, 322917, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:16:34.765264+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 16, 34, 765264, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:16:34.907365+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 16, 34, 907365, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:16:34.945395+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 16, 34, 945395, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:16:35.028455+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YmNmYjFhYWEwZDBlNGI5YzM0NGNhOWY3OGM4M2Q2ODZkMjU0ZWQwNDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 16, 35, 28455, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:16:35.392249+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 16, 35, 392249, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F77E10>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210E85730>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86CF8>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F77E10>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210E85730>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86CF8>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F60940>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F775F8>'
(0.004) UPDATE "django_session" SET "session_data" = 'OWVhZGQzMzhhNTk5YTVjNzEyNzJmNTRjMDRmYmYwNjk0NTJmYmE0Mjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:16:55.668761+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OWVhZGQzMzhhNTk5YTVjNzEyNzJmNTRjMDRmYmYwNjk0NTJmYmE0Mjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 16, 55, 668761, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:17:05.791853+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 17, 5, 791853, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA44A8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210C3BF28>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210E99EA0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F77278>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA44A8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210C3BF28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210E99EA0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F77278>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F82470>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210FA48D0>'
(0.004) UPDATE "django_session" SET "session_data" = 'NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:17:18.863222+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 17, 18, 863222, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:17:28.495673+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 17, 28, 495673, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:17:28.802877+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 17, 28, 802877, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:17:29.199521+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 17, 29, 199521, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:17:29.311614+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 17, 29, 311614, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:17:29.447721+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 17, 29, 447721, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:17:29.554804+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NWM3NzljNmNhZTI2YWFhNjg4ODJmMjRmOGExMzFmOTgzZmNhMjk5YTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 17, 29, 554804, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:17:29.686898+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 17, 29, 686898, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA2860>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86198>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA2860>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F210D0>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F86198>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F85470>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210FA2B38>'
(0.003) UPDATE "django_session" SET "session_data" = 'OTAwMjBjNTkzNDI0MjAwM2EwMzc4MzA1NzdiODZmNWM0OTE0MDY5ZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:17:41.748928+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('OTAwMjBjNTkzNDI0MjAwM2EwMzc4MzA1NzdiODZmNWM0OTE0MDY5ZTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 17, 41, 748928, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:21:04.487602+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 21, 4, 487602, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F463C8>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E85730>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F210D0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1E0F0>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F463C8>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E85730>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F210D0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1E0F0>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FA2048>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F46198>'
(0.005) UPDATE "django_session" SET "session_data" = 'YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:21:24.906921+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 21, 24, 906921, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:21:33.979706+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 21, 33, 979706, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:21:34.133815+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 21, 34, 133815, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:21:34.478450+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 21, 34, 478450, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.005) UPDATE "django_session" SET "session_data" = 'YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:21:34.675589+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 21, 34, 675589, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:21:34.755144+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 21, 34, 755144, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.004) UPDATE "django_session" SET "session_data" = 'YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:21:34.948272+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('YWQ5ODU1NTU5YTkxODhiNTU1ZGFiNWE5YjA2NGRjODNkZTU0ZjAzMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 21, 34, 948272, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:21:35.322565+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 21, 35, 322565, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F60438>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210C3BF28>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F60748>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F60438>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210C3BF28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F60748>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FA2C50>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210FBB630>'
(0.004) UPDATE "django_session" SET "session_data" = 'ODE1MTVjY2IzYmMyMzFmMzM0ZTI2MDVkNTBiYzdjNjdmM2VlN2YzMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:21:42.199529+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ODE1MTVjY2IzYmMyMzFmMzM0ZTI2MDVkNTBiYzdjNjdmM2VlN2YzMTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 21, 42, 199529, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.040) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:23:14.797249+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 23, 14, 797249, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA2128>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F210D0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FA2198>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FA2128>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210EA8C80>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F210D0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FA2198>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F60470>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210FA2E80>'
(0.003) UPDATE "django_session" SET "session_data" = 'ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:23:22.405952+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 23, 22, 405952, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.004) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:23:30.252742+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 23, 30, 252742, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.002) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:23:30.324789+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 23, 30, 324789, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:23:30.655574+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 23, 30, 655574, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:23:30.784722+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 23, 30, 784722, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:23:30.903348+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 23, 30, 903348, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.003) UPDATE "django_session" SET "session_data" = 'ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:23:31.050064+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZDAzMzBjNTZiMzgwMzY3ZjQ1MDkwM2U4MmZiOTRiMWI5NmI5ZDU2ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 23, 31, 50064, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:23:31.140616+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 23, 31, 140616, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F1E978>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E85730>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F8C8>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F60D68>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F1E978>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E85730>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F8C8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F60D68>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F1E588>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F1EBA8>'
(0.004) UPDATE "django_session" SET "session_data" = 'Y2Q0ZTUxNmE3OWQ4NDYxMjVlMmM3OWM2NjlhNjA1ZWYxNjhmMWU2Yjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:23:38.303251+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('Y2Q0ZTUxNmE3OWQ4NDYxMjVlMmM3OWM2NjlhNjA1ZWYxNjhmMWU2Yjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 23, 38, 303251, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:49:04.839079+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 49, 4, 839079, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F82668>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E85730>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1E0F0>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F82668>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E85730>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1E0F0>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F45588>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F822B0>'
Exception while resolving variable 'vms' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [vms] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F82668>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210E85730>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210EA8C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1E0F0>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div class="dashboard-co\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F3EB70>, <TextNode: \'" class="un-icon"> \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F3E0F0>, <TextNode: \'</h3>\\n <div class="das\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F3E208>, <TextNode: \'</p>\\n <div class="\'>, <django.template.defaulttags.URLNode object at 0x0000018210F3E2E8>, <TextNode: \'"><span class="css-plus">\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F3E3C8>, <TextNode: \'</span></a>\\n </div\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F3E4A8>, <TextNode: \'</th>\\n <th\'>, <For Node: for vm in vms, tail_len: 13>, <TextNode: \'\\n <tr>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FA2358>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F4A780>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F4A828>, <TextNode: \'">\\n <s\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F4A908>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F4A9B0>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.template.defaulttags.CommentNode object at 0x0000018210FBBE48>, <TextNode: \'\\n\'>]>}, {}]'
(0.034) UPDATE "django_session" SET "session_data" = 'ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:49:25.427564+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 49, 25, 427564, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:49:45.473854+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 49, 45, 473854, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:49:45.570913+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 49, 45, 570913, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.003) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:49:45.724746+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 49, 45, 724746, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.003) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:49:45.775288+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 49, 45, 775288, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:49:45.908388+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 49, 45, 908388, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T21:49:45.974939+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('ZGI0NjI3NmM4M2RhODI0YThhOTUxODBiODYwYzE3Y2U3ZDBiNWU2MTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 21, 49, 45, 974939, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.004) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:49:46.099108+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 49, 46, 99108, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.002) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FBBE48>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F488>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F0D0>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FBB780>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FBBE48>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F488>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F0D0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FBB780>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F6EE48>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210FBB400>'
Exception while resolving variable 'vms' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [vms] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210FBBE48>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F488>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F0D0>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FBB780>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div class="dashboard-co\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F60EF0>, <TextNode: \'" class="un-icon"> \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F60390>, <TextNode: \'</h3>\\n <div class="das\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F60E80>, <TextNode: \'</p>\\n <div class="\'>, <django.template.defaulttags.URLNode object at 0x0000018210F60160>, <TextNode: \'"><span class="css-plus">\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F60470>, <TextNode: \'</span></a>\\n </div\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F605C0>, <TextNode: \'</th>\\n <th\'>, <For Node: for vm in vms, tail_len: 13>, <TextNode: \'\\n <tr>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F45EF0>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F6E080>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F6E128>, <TextNode: \'">\\n <s\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F6E208>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F6E2B0>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.template.defaulttags.CommentNode object at 0x0000018210F863C8>, <TextNode: \'\\n\'>]>}, {}]'
(0.003) UPDATE "django_session" SET "session_data" = 'NzhkNDFhMDNmMGFkZGI3Y2RiODM1MDhiY2YzN2NkNjE0ODJmYTczYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-29T21:49:52.262641+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NzhkNDFhMDNmMGFkZGI3Y2RiODM1MDhiY2YzN2NkNjE0ODJmYTczYTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXV0iLCJfYXV0aF91c2VyX2lkIjoiMiIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 29, 21, 49, 52, 262641, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T21:59:44.919201+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 21, 59, 44, 919201, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F45940>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F400>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F730>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FC7D68>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F45940>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F400>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F730>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FC7D68>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F458D0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F45B00>'
Exception while resolving variable 'vms' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [vms] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F45940>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2F400>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F730>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210FC7D68>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div class="dashboard-co\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F61D30>, <TextNode: \'" class="un-icon"> \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F61CC0>, <TextNode: \'</h3>\\n <div class="das\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F61C88>, <TextNode: \'</p>\\n <div class="\'>, <django.template.defaulttags.URLNode object at 0x0000018210F61D68>, <TextNode: \'"><span class="css-plus">\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F61F60>, <TextNode: \'</span></a>\\n </div\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F3E588>, <TextNode: \'</th>\\n <th\'>, <For Node: for vm in vms, tail_len: 13>, <TextNode: \'\\n <tr>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FC7080>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F675C0>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F67668>, <TextNode: \'">\\n <s\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F67748>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F677F0>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.template.defaulttags.CommentNode object at 0x0000018210F616D8>, <TextNode: \'\\n\'>]>}, {}]'
(0.003) UPDATE "django_session" SET "session_data" = 'NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T21:59:52.516429+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 21, 59, 52, 516429, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T22:00:00.913183+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 22, 0, 0, 913183, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T22:00:01.101809+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 22, 0, 1, 101809, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T22:00:01.145338+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 22, 0, 1, 145338, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T22:00:01.229901+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 22, 0, 1, 229901, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T22:00:01.434063+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 22, 0, 1, 434063, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
(0.002) UPDATE "django_session" SET "session_data" = 'NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', "expire_date" = '2017-08-29T22:00:01.512123+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NDljODU3ZWFiMWVhMGYyMTI0MTUyMDhlZTBlZGJlNDk1ODY1NWM0OTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl1dIiwiX2F1dGhfdXNlcl9pZCI6IjIiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIn0=', datetime.datetime(2017, 8, 29, 22, 0, 1, 512123, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-15T22:00:01.568667+00:00'::timestamptz AND "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'); args=(datetime.datetime(2017, 8, 15, 22, 0, 1, 568667, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 2; args=(2,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'TIME_ZONE': 'UTC', 'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'DEBUG': 10, 'ERROR': 40, 'SUCCESS': 25}, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F3E550>, 'user': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, 'csrf_token': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FF28>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F488>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1EA58>, 'MEDIA_URL': '/media/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {})}, {}, {'error': 'connection'}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F3E550>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FF28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F488>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1EA58>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210F6F518>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000018210F3E198>'
Exception while resolving variable 'vms' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'vms'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [vms] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'TIME_ZONE\': \'UTC\', \'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'DEBUG\': 10, \'ERROR\': 40, \'SUCCESS\': 25}, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000018210F3E550>, \'user\': <SimpleLazyObject: <CustomUser: tiwariav@hotmail.com>>, \'csrf_token\': <SimpleLazyObject: <function csrf.<locals>._get_val at 0x0000018210F2FF28>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000018210F2F488>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000018210F1EA58>, \'MEDIA_URL\': \'/media/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {})}, {}, {\'error\': \'connection\'}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div class="dashboard-co\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FC7358>, <TextNode: \'" class="un-icon"> \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210FC7160>, <TextNode: \'</h3>\\n <div class="das\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F45470>, <TextNode: \'</p>\\n <div class="\'>, <django.template.defaulttags.URLNode object at 0x0000018210F45A58>, <TextNode: \'"><span class="css-plus">\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F45978>, <TextNode: \'</span></a>\\n </div\'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210F45A90>, <TextNode: \'</th>\\n <th\'>, <For Node: for vm in vms, tail_len: 13>, <TextNode: \'\\n <tr>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FA94A8>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FBB828>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x0000018210FBB470>, <TextNode: \'">\\n <s\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FBB9B0>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000018210FBBA90>, <TextNode: \'" class="un-icon"></td>\\n \'>, <django.template.defaulttags.CommentNode object at 0x0000018210F604E0>, <TextNode: \'\\n\'>]>}, {}]'
(0.004) UPDATE "django_session" SET "session_data" = 'NTY3MGRhMzUwNjdkN2M5NjYzM2M3MGFjZGMzMDI5ZDA2ZWJhZWIxZDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', "expire_date" = '2017-08-29T22:00:08.530055+00:00'::timestamptz WHERE "django_session"."session_key" = '217ssownkpy0oyztqvldsm6h2rv5lto0'; args=('NTY3MGRhMzUwNjdkN2M5NjYzM2M3MGFjZGMzMDI5ZDA2ZWJhZWIxZDp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6ImZlODFlNjgwMzQyMDM2OTMyNWIyNjNjNjBmNzkxOWVkNmQ2OGQ4ZjIiLCJfbWVzc2FnZXMiOiJbW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdLFtcIl9fanNvbl9tZXNzYWdlXCIsMCw0MCxcIldlIGNvdWxkIG5vdCBsb2FkIHlvdXIgVk1zIGR1ZSB0byBhIGJhY2tlbmQgY29ubmVjdGlvbiAgICAgICAgICAgICAgICAgZXJyb3IuIFBsZWFzZSB0cnkgYWdhaW4gaW4gYSBmZXcgbWludXRlc1wiXSxbXCJfX2pzb25fbWVzc2FnZVwiLDAsNDAsXCJXZSBjb3VsZCBub3QgbG9hZCB5b3VyIFZNcyBkdWUgdG8gYSBiYWNrZW5kIGNvbm5lY3Rpb24gICAgICAgICAgICAgICAgIGVycm9yLiBQbGVhc2UgdHJ5IGFnYWluIGluIGEgZmV3IG1pbnV0ZXNcIl0sW1wiX19qc29uX21lc3NhZ2VcIiwwLDQwLFwiV2UgY291bGQgbm90IGxvYWQgeW91ciBWTXMgZHVlIHRvIGEgYmFja2VuZCBjb25uZWN0aW9uICAgICAgICAgICAgICAgICBlcnJvci4gUGxlYXNlIHRyeSBhZ2FpbiBpbiBhIGZldyBtaW51dGVzXCJdXSIsIl9hdXRoX3VzZXJfaWQiOiIyIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCJ9', datetime.datetime(2017, 8, 29, 22, 0, 8, 530055, tzinfo=<UTC>), '217ssownkpy0oyztqvldsm6h2rv5lto0')
(0.008) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.007) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.051) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.027)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.004) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.007) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.042) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.028)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.006) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.007) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.044) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.030)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.005) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.007) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.044) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.025)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.006) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(4.235) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(1.842) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(4.737) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.004) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.032) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.366)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.103) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'False': False, 'True': True}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594A60240>, 'csrf_token': <SimpleLazyObject: '0lyUWpnEihNLxnHakJul8CQYDsQtPM9s'>, 'MEDIA_URL': '/media/', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x0000017594A42E80>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000017594A632F0>, 'sql_queries': <function debug.<locals>.<lambda> at 0x0000017594A5E9D8>, 'request': <WSGIRequest: GET '/hosting/login?next=/hosting/my-virtual-machines'>, 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594A42CF8>, 'TIME_ZONE': 'UTC', 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'ERROR': 40, 'WARNING': 30, 'SUCCESS': 25, 'INFO': 20}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x00000175949EC940>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'None': None, 'False': False, 'True': True}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594A60240>, 'csrf_token': <SimpleLazyObject: '0lyUWpnEihNLxnHakJul8CQYDsQtPM9s'>, 'MEDIA_URL': '/media/', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x0000017594A42E80>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000017594A632F0>, 'sql_queries': <function debug.<locals>.<lambda> at 0x0000017594A5E9D8>, 'request': <WSGIRequest: GET '/hosting/login?next=/hosting/my-virtual-machines'>, 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594A42CF8>, 'TIME_ZONE': 'UTC', 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'ERROR': 40, 'WARNING': 30, 'SUCCESS': 25, 'INFO': 20}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x00000175949EC940>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x0000017594A539B0>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000017594A42C18>'
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'False': False, 'True': True}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594B9F198>, 'csrf_token': <SimpleLazyObject: '0lyUWpnEihNLxnHakJul8CQYDsQtPM9s'>, 'MEDIA_URL': '/media/', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x0000017594B8DE48>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000017594BA2B70>, 'sql_queries': <function debug.<locals>.<lambda> at 0x0000017594B7D510>, 'request': <WSGIRequest: GET '/hosting/login'>, 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594B8DC18>, 'TIME_ZONE': 'UTC', 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'ERROR': 40, 'WARNING': 30, 'SUCCESS': 25, 'INFO': 20}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x0000017594B8D9B0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in "[{'None': None, 'False': False, 'True': True}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594B9F198>, 'csrf_token': <SimpleLazyObject: '0lyUWpnEihNLxnHakJul8CQYDsQtPM9s'>, 'MEDIA_URL': '/media/', 'user': <SimpleLazyObject: <django.contrib.auth.models.AnonymousUser object at 0x0000017594B8DE48>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000017594BA2B70>, 'sql_queries': <function debug.<locals>.<lambda> at 0x0000017594B7D510>, 'request': <WSGIRequest: GET '/hosting/login'>, 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594B8DC18>, 'TIME_ZONE': 'UTC', 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'ERROR': 40, 'WARNING': 30, 'SUCCESS': 25, 'INFO': 20}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'form': <HostingUserLoginForm bound=False, valid=Unknown, fields=(email;password)>, 'view': <hosting.views.LoginView object at 0x0000017594B8D9B0>}, {'block': <Block Node: navbar. Contents: [<TextNode: '\\n '>, <django.template.loader_tags.IncludeNode object at 0x0000017594BAE550>, <TextNode: '\\n'>]>}, {}]"
Exception while resolving variable 'hosting_url' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000017594B8D748>'
Exception while resolving variable 'next' in template 'hosting/login.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 83, in __getitem__
list_ = super(MultiValueDict, self).__getitem__(key)
KeyError: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\utils\datastructures.py", line 85, in __getitem__
raise MultiValueDictKeyError(repr(key))
django.utils.datastructures.MultiValueDictKeyError: "'next'"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'QueryDict' object has no attribute 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next] in '<QueryDict: {}>'
(0.318) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'arvind3@example.com'; args=('arvind3@example.com',)
(0.003) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'arvind3@example.com'; args=('arvind3@example.com',)
(0.002) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."email" = 'arvind3@example.com'; args=('arvind3@example.com',)
(0.202) SELECT (1) AS "a" FROM "django_session" WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' LIMIT 1; args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9',)
(0.182) INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', 'NTFlYTI2NjIyMDAzYjg4MGE2Y2VkZDQ1YmQ2MmQ0ZmM3MmU4Mzk3MDp7fQ==', '2017-08-30T14:33:31.754176+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', 'NTFlYTI2NjIyMDAzYjg4MGE2Y2VkZDQ1YmQ2MmQ0ZmM3MmU4Mzk3MDp7fQ==', datetime.datetime(2017, 8, 30, 14, 33, 31, 754176, tzinfo=<UTC>))
(0.002) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9',)
(0.023) DELETE FROM "django_session" WHERE "django_session"."session_key" IN ('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9',)
(0.158) UPDATE "membership_customuser" SET "last_login" = '2017-08-16T14:33:32.378629+00:00'::timestamptz WHERE "membership_customuser"."id" = 3; args=(datetime.datetime(2017, 8, 16, 14, 33, 32, 378629, tzinfo=<UTC>), 3)
(0.002) UPDATE "django_session" SET "session_data" = 'MzAwZGMwMGFhZjU0NDNlOTcxOWU2MWY1MzVmMTQ4NjkxOTQ1NjA1ODp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIn0=', "expire_date" = '2017-08-30T14:33:32.678167+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MzAwZGMwMGFhZjU0NDNlOTcxOWU2MWY1MzVmMTQ4NjkxOTQ1NjA1ODp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIn0=', datetime.datetime(2017, 8, 30, 14, 33, 32, 678167, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.002) INSERT INTO "django_session" ("session_key", "session_data", "expire_date") VALUES ('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', 'MzAwZGMwMGFhZjU0NDNlOTcxOWU2MWY1MzVmMTQ4NjkxOTQ1NjA1ODp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIn0=', '2017-08-30T14:33:32.678167+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', 'MzAwZGMwMGFhZjU0NDNlOTcxOWU2MWY1MzVmMTQ4NjkxOTQ1NjA1ODp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjMiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIn0=', datetime.datetime(2017, 8, 30, 14, 33, 32, 678167, tzinfo=<UTC>))
(0.045) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T14:33:32.828380+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 14, 33, 32, 828380, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'False': False, 'True': True}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594E45470>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000017594C8E378>, 'sql_queries': <function debug.<locals>.<lambda> at 0x0000017594C8EE18>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594DEA128>, 'TIME_ZONE': 'UTC', 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'ERROR': 40, 'WARNING': 30, 'SUCCESS': 25, 'INFO': 20}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'is_paginated': False, 'object_list': [], 'view': <hosting.views.VirtualMachinesPlanListView object at 0x0000017594C867F0>, 'vms': [], 'paginator': <django.core.paginator.Paginator object at 0x0000017594BA72E8>, 'page_obj': <Page 1 of 1>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'None\': None, \'False\': False, \'True\': True}, {\'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594E45470>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000017594C8E378>, \'sql_queries\': <function debug.<locals>.<lambda> at 0x0000017594C8EE18>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594DEA128>, \'TIME_ZONE\': \'UTC\', \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'ERROR\': 40, \'WARNING\': 30, \'SUCCESS\': 25, \'INFO\': 20}, \'debug\': True, \'CMS_MEDIA_URL\': \'/media/cms/\'}, {}, {\'is_paginated\': False, \'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x0000017594C867F0>, \'vms\': [], \'paginator\': <django.core.paginator.Paginator object at 0x0000017594BA72E8>, \'page_obj\': <Page 1 of 1>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000017594E21390>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000017594D0CD68>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'None\': None, \'False\': False, \'True\': True}, {\'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594E45470>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000017594C8E378>, \'sql_queries\': <function debug.<locals>.<lambda> at 0x0000017594C8EE18>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594DEA128>, \'TIME_ZONE\': \'UTC\', \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'ERROR\': 40, \'WARNING\': 30, \'SUCCESS\': 25, \'INFO\': 20}, \'debug\': True, \'CMS_MEDIA_URL\': \'/media/cms/\'}, {}, {\'is_paginated\': False, \'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x0000017594C867F0>, \'vms\': [], \'paginator\': <django.core.paginator.Paginator object at 0x0000017594BA72E8>, \'page_obj\': <Page 1 of 1>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x0000017594E456D8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.004) UPDATE "django_session" SET "session_data" = 'YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T14:33:36.489421+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 14, 33, 36, 489421, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T14:33:44.473533+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 14, 33, 44, 473533, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'YjdkY2Y0NzZjZDM2MDRmNmYyOTAwNGMyMTNlMGQ3YzFkNGI5ZDczOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T14:33:45.122780+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YjdkY2Y0NzZjZDM2MDRmNmYyOTAwNGMyMTNlMGQ3YzFkNGI5ZDczOTp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 14, 33, 45, 122780, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T14:33:45.301467+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 14, 33, 45, 301467, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'YWFmNGFlNTQ3NWVmZWVhMTY3Yjg5MDQ3NThiOTVmNDk5YmY2MGU4ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjMiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T14:33:45.517654+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YWFmNGFlNTQ3NWVmZWVhMTY3Yjg5MDQ3NThiOTVmNDk5YmY2MGU4ODp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9pZCI6IjMiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 14, 33, 45, 517654, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T14:33:45.925158+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 14, 33, 45, 925158, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T14:33:46.152043+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 14, 33, 46, 152043, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T14:33:46.286672+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 14, 33, 46, 286672, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'False': False, 'True': True}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594EE6F98>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x0000017594EC78C8>, 'sql_queries': <function debug.<locals>.<lambda> at 0x0000017594EC79D8>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594EE6080>, 'TIME_ZONE': 'UTC', 'DEFAULT_MESSAGE_LEVELS': {'DEBUG': 10, 'ERROR': 40, 'WARNING': 30, 'SUCCESS': 25, 'INFO': 20}, 'debug': True, 'CMS_MEDIA_URL': '/media/cms/'}, {}, {'is_paginated': False, 'object_list': [], 'view': <hosting.views.VirtualMachinesPlanListView object at 0x0000017594EE1128>, 'vms': [], 'paginator': <django.core.paginator.Paginator object at 0x0000017594EE1400>, 'page_obj': <Page 1 of 1>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'None\': None, \'False\': False, \'True\': True}, {\'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594EE6F98>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000017594EC78C8>, \'sql_queries\': <function debug.<locals>.<lambda> at 0x0000017594EC79D8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594EE6080>, \'TIME_ZONE\': \'UTC\', \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'ERROR\': 40, \'WARNING\': 30, \'SUCCESS\': 25, \'INFO\': 20}, \'debug\': True, \'CMS_MEDIA_URL\': \'/media/cms/\'}, {}, {\'is_paginated\': False, \'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x0000017594EE1128>, \'vms\': [], \'paginator\': <django.core.paginator.Paginator object at 0x0000017594EE1400>, \'page_obj\': <Page 1 of 1>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x0000017594EF5C88>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x0000017594EE1F28>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'None\': None, \'False\': False, \'True\': True}, {\'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x0000017594EE6F98>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x0000017594EC78C8>, \'sql_queries\': <function debug.<locals>.<lambda> at 0x0000017594EC79D8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x0000017594EE6080>, \'TIME_ZONE\': \'UTC\', \'DEFAULT_MESSAGE_LEVELS\': {\'DEBUG\': 10, \'ERROR\': 40, \'WARNING\': 30, \'SUCCESS\': 25, \'INFO\': 20}, \'debug\': True, \'CMS_MEDIA_URL\': \'/media/cms/\'}, {}, {\'is_paginated\': False, \'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x0000017594EE1128>, \'vms\': [], \'paginator\': <django.core.paginator.Paginator object at 0x0000017594EE1400>, \'page_obj\': <Page 1 of 1>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x0000017594ECA8D0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T14:33:48.929105+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 14, 33, 48, 929105, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.028) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.021)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.004) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.008) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.004) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.052) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.023)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.004) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.006) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.037) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.020)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.004) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.007) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.004) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.026) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.017)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.002) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:17:12.598533+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 17, 12, 598533, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.277) SELECT COUNT(*) AS "__count" FROM "hosting_userhostingkey" WHERE "hosting_userhostingkey"."user_id" = 3; args=(3,)
(0.002) SELECT "hosting_userhostingkey"."id", "hosting_userhostingkey"."user_id", "hosting_userhostingkey"."public_key", "hosting_userhostingkey"."private_key", "hosting_userhostingkey"."created_at", "hosting_userhostingkey"."name" FROM "hosting_userhostingkey" WHERE "hosting_userhostingkey"."user_id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'NWY4NjkwMjhkNzE0Zjk5Y2ZhMTBhNDU5MmE0ZmVjMDMzMDNiYTQyNTp7ImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T15:17:14.158869+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('NWY4NjkwMjhkNzE0Zjk5Y2ZhMTBhNDU5MmE0ZmVjMDMzMDNiYTQyNTp7ImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 15, 17, 14, 158869, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.018) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:17:14.285865+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 17, 14, 285865, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'True': True, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000252FA934D08>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'TIME_ZONE': 'UTC', 'debug': True, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/ssh_keys_choice'>, 'CMS_MEDIA_URL': '/media/cms/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA935710>, 'MEDIA_URL': '/media/', 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FA8F3438>, 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000252FA933620>}, {}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FA934D08>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA935710>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FA8F3438>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FA933620>}, {}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000252FA9469E8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000252FA8F34E0>'
Exception while resolving variable 'virtual_machine' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'virtual_machine'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'virtual_machine'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'virtual_machine'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [virtual_machine] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FA934D08>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA935710>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FA8F3438>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FA933620>}, {}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="conta\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B048>, <TextNode: \'</h1>\\n <p>\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B128>, <TextNode: \'.</p>\\n </div>\\n\'>, <IfNode>, <TextNode: \'\\n <div class="\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B2E8>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B588>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.CsrfTokenNode object at 0x00000252FA92B518>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B6D8>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B7B8>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B898>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.URLNode object at 0x00000252FA92B940>, <TextNode: \'">\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BA20>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BB00>, <TextNode: \'</h4>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BBE0>, <TextNode: \'<br>\'>, <Variable Node: virtual_machine.name>, <TextNode: \' ?</p>\\n </\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BDD8>, <TextNode: \'</button>\\n</div>\\n\\n\'>, <IfNode>, <TextNode: \'\\n\\n\\n<script type="text/jav\'>, <For Node: for user_key in keys, tail_len: 5>, <TextNode: \'\\n };\\n\\n</script>\\n\\n\\n\'>]>}]'
Exception while resolving variable 'next_url' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'next_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'next_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next_url] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FA934D08>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA935710>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FA8F3438>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FA933620>}, {}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="conta\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B048>, <TextNode: \'</h1>\\n <p>\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B128>, <TextNode: \'.</p>\\n </div>\\n\'>, <IfNode>, <TextNode: \'\\n <div class="\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B2E8>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B588>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.CsrfTokenNode object at 0x00000252FA92B518>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B6D8>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B7B8>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B898>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.URLNode object at 0x00000252FA92B940>, <TextNode: \'">\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BA20>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BB00>, <TextNode: \'</h4>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BBE0>, <TextNode: \'<br>\'>, <Variable Node: virtual_machine.name>, <TextNode: \' ?</p>\\n </\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BDD8>, <TextNode: \'</button>\\n</div>\\n\\n\'>, <IfNode>, <TextNode: \'\\n\\n\\n<script type="text/jav\'>, <For Node: for user_key in keys, tail_len: 5>, <TextNode: \'\\n };\\n\\n</script>\\n\\n\\n\'>]>}]'
Exception while resolving variable 'keys' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'keys'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'keys'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'keys'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [keys] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FA934D08>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA935710>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FA8F3438>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FA933620>}, {}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="conta\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B048>, <TextNode: \'</h1>\\n <p>\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B128>, <TextNode: \'.</p>\\n </div>\\n\'>, <IfNode>, <TextNode: \'\\n <div class="\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B2E8>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B588>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.CsrfTokenNode object at 0x00000252FA92B518>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B6D8>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B7B8>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92B898>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.URLNode object at 0x00000252FA92B940>, <TextNode: \'">\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BA20>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BB00>, <TextNode: \'</h4>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BBE0>, <TextNode: \'<br>\'>, <Variable Node: virtual_machine.name>, <TextNode: \' ?</p>\\n </\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FA92BDD8>, <TextNode: \'</button>\\n</div>\\n\\n\'>, <IfNode>, <TextNode: \'\\n\\n\\n<script type="text/jav\'>, <For Node: for user_key in keys, tail_len: 5>, <TextNode: \'\\n };\\n\\n</script>\\n\\n\\n\'>]>}, {}]'
(0.003) UPDATE "django_session" SET "session_data" = 'YzFjMjBjMDJmYjJiMGJmMDMyOTM0OTNhZjMzNjY1Y2Y1MzU2OTE1Mzp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T15:17:14.950453+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YzFjMjBjMDJmYjJiMGJmMDMyOTM0OTNhZjMzNjY1Y2Y1MzU2OTE1Mzp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2JhY2tlbmQiOiJkamFuZ28uY29udHJpYi5hdXRoLmJhY2tlbmRzLk1vZGVsQmFja2VuZCIsImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 15, 17, 14, 950453, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:17:25.758485+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 17, 25, 758485, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:17:26.147646+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 17, 26, 147646, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:17:26.231959+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 17, 26, 231959, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T15:17:26.390078+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 15, 17, 26, 390078, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:17:26.770141+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 17, 26, 770141, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:17:27.011848+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 17, 27, 11848, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:17:27.136954+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 17, 27, 136954, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'True': True, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000252FAA0BEA0>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'TIME_ZONE': 'UTC', 'debug': True, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'CMS_MEDIA_URL': '/media/cms/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA97CF28>, 'MEDIA_URL': '/media/', 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAA31048>, 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000252FA77A730>}, {}, {'object_list': [], 'view': <hosting.views.VirtualMachinesPlanListView object at 0x00000252FAA38780>, 'paginator': <django.core.paginator.Paginator object at 0x00000252FA66F470>, 'page_obj': <Page 1 of 1>, 'is_paginated': False, 'vms': []}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FAA0BEA0>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA97CF28>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAA31048>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FA77A730>}, {}, {\'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x00000252FAA38780>, \'paginator\': <django.core.paginator.Paginator object at 0x00000252FA66F470>, \'page_obj\': <Page 1 of 1>, \'is_paginated\': False, \'vms\': []}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000252FAA4C7F0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000252FAA38F28>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FAA0BEA0>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FA97CF28>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAA31048>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FA77A730>}, {}, {\'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x00000252FAA38780>, \'paginator\': <django.core.paginator.Paginator object at 0x00000252FA66F470>, \'page_obj\': <Page 1 of 1>, \'is_paginated\': False, \'vms\': []}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAA30B38>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T15:17:30.246189+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 15, 17, 30, 246189, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:17:57.145986+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 17, 57, 145986, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'True': True, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000252FAB0FE18>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'TIME_ZONE': 'UTC', 'debug': True, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/ssh_keys_choice'>, 'CMS_MEDIA_URL': '/media/cms/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FAB03C88>, 'MEDIA_URL': '/media/', 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAAF9EF0>, 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000252FAB0F730>}, {}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FAB0FE18>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FAB03C88>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAAF9EF0>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FAB0F730>}, {}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000252FAB055F8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000252FAAF9E48>'
Exception while resolving variable 'virtual_machine' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'virtual_machine'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'virtual_machine'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'virtual_machine'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [virtual_machine] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FAB0FE18>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FAB03C88>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAAF9EF0>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FAB0F730>}, {}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="conta\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAB03F60>, <TextNode: \'</h1>\\n <p>\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8080>, <TextNode: \'.</p>\\n </div>\\n\'>, <IfNode>, <TextNode: \'\\n <div class="\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8240>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF84E0>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.CsrfTokenNode object at 0x00000252FAAF8470>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8630>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8710>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF87F0>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.URLNode object at 0x00000252FAAF8898>, <TextNode: \'">\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8978>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8A58>, <TextNode: \'</h4>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8B38>, <TextNode: \'<br>\'>, <Variable Node: virtual_machine.name>, <TextNode: \' CentOS 7-14229 ?</p>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8D30>, <TextNode: \'</button>\\n</div>\\n\\n\'>, <IfNode>, <TextNode: \'\\n\\n\\n<script type="text/jav\'>, <For Node: for user_key in keys, tail_len: 5>, <TextNode: \'\\n };\\n\\n</script>\\n\\n\\n\'>]>}]'
Exception while resolving variable 'next_url' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'next_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'next_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'next_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [next_url] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FAB0FE18>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FAB03C88>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAAF9EF0>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FAB0F730>}, {}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="conta\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAB03F60>, <TextNode: \'</h1>\\n <p>\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8080>, <TextNode: \'.</p>\\n </div>\\n\'>, <IfNode>, <TextNode: \'\\n <div class="\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8240>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF84E0>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.CsrfTokenNode object at 0x00000252FAAF8470>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8630>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8710>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF87F0>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.URLNode object at 0x00000252FAAF8898>, <TextNode: \'">\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8978>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8A58>, <TextNode: \'</h4>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8B38>, <TextNode: \'<br>\'>, <Variable Node: virtual_machine.name>, <TextNode: \' CentOS 7-14229 ?</p>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8D30>, <TextNode: \'</button>\\n</div>\\n\\n\'>, <IfNode>, <TextNode: \'\\n\\n\\n<script type="text/jav\'>, <For Node: for user_key in keys, tail_len: 5>, <TextNode: \'\\n };\\n\\n</script>\\n\\n\\n\'>]>}]'
Exception while resolving variable 'keys' in template 'hosting/choice_ssh_keys.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'keys'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'keys'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'keys'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [keys] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FAB0FE18>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/ssh_keys_choice\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FAB03C88>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FAAF9EF0>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FAB0F730>}, {}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="conta\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAB03F60>, <TextNode: \'</h1>\\n <p>\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8080>, <TextNode: \'.</p>\\n </div>\\n\'>, <IfNode>, <TextNode: \'\\n <div class="\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8240>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF84E0>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.CsrfTokenNode object at 0x00000252FAAF8470>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8630>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8710>, <TextNode: \'</h2>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF87F0>, <TextNode: \'.</p>\\n \'>, <django.template.defaulttags.URLNode object at 0x00000252FAAF8898>, <TextNode: \'">\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8978>, <TextNode: \'\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8A58>, <TextNode: \'</h4>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8B38>, <TextNode: \'<br>\'>, <Variable Node: virtual_machine.name>, <TextNode: \' CentOS 7-14229 ?</p>\\n \'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FAAF8D30>, <TextNode: \'</button>\\n</div>\\n\\n\'>, <IfNode>, <TextNode: \'\\n\\n\\n<script type="text/jav\'>, <For Node: for user_key in keys, tail_len: 5>, <TextNode: \'\\n };\\n\\n</script>\\n\\n\\n\'>]>}, {}]'
(0.003) UPDATE "django_session" SET "session_data" = 'YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:17:57.514458+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 17, 57, 514458, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:18:01.865306+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 18, 1, 865306, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T15:18:02.180112+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 15, 18, 2, 180112, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:18:02.238777+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 18, 2, 238777, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:18:02.351873+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 18, 2, 351873, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:18:02.391897+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 18, 2, 391897, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.003) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.001) UPDATE "django_session" SET "session_data" = 'NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T15:18:02.492972+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('NDliNzZlODRiYjU2YjhlODZhMDEzYzRhYzA2ODQwMWUwNzY0NmFkODp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 15, 18, 2, 492972, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.004) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:18:02.536841+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 18, 2, 536841, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'None': None, 'True': True, 'False': False}, {'sql_queries': <function debug.<locals>.<lambda> at 0x00000252FABE2F28>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'TIME_ZONE': 'UTC', 'debug': True, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'CMS_MEDIA_URL': '/media/cms/', 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FABE4CF8>, 'MEDIA_URL': '/media/', 'STATIC_URL': '/static/', 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FABCB940>, 'DEFAULT_MESSAGE_LEVELS': {'WARNING': 30, 'INFO': 20, 'ERROR': 40, 'DEBUG': 10, 'SUCCESS': 25}, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000252FABBB1E0>}, {}, {'object_list': [], 'view': <hosting.views.VirtualMachinesPlanListView object at 0x00000252FABCBFD0>, 'paginator': <django.core.paginator.Paginator object at 0x00000252FAC3BBA8>, 'page_obj': <Page 1 of 1>, 'is_paginated': False, 'vms': []}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FABE2F28>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FABE4CF8>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FABCB940>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FABBB1E0>}, {}, {\'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x00000252FABCBFD0>, \'paginator\': <django.core.paginator.Paginator object at 0x00000252FAC3BBA8>, \'page_obj\': <Page 1 of 1>, \'is_paginated\': False, \'vms\': []}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000252FABD9748>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000252FABCB898>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'None\': None, \'True\': True, \'False\': False}, {\'sql_queries\': <function debug.<locals>.<lambda> at 0x00000252FABE2F28>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'TIME_ZONE\': \'UTC\', \'debug\': True, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'CMS_MEDIA_URL\': \'/media/cms/\', \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000252FABE4CF8>, \'MEDIA_URL\': \'/media/\', \'STATIC_URL\': \'/static/\', \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000252FABCB940>, \'DEFAULT_MESSAGE_LEVELS\': {\'WARNING\': 30, \'INFO\': 20, \'ERROR\': 40, \'DEBUG\': 10, \'SUCCESS\': 25}, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000252FABBB1E0>}, {}, {\'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x00000252FABCBFD0>, \'paginator\': <django.core.paginator.Paginator object at 0x00000252FAC3BBA8>, \'page_obj\': <Page 1 of 1>, \'is_paginated\': False, \'vms\': []}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x00000252FABE41D0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:18:04.931604+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YmMxMGI3NDdjYzYwZjMzYTFkMmM4NTBhNjgyOGNlODYyOWY0ZmY0NTp7Il9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 18, 4, 931604, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.006) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.042) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.023)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.006) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:37:20.568082+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 37, 20, 568082, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'True': True, 'None': None, 'False': False}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'sql_queries': <function debug.<locals>.<lambda> at 0x00000246F325E7B8>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'STATIC_URL': '/static/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000246F325F588>, 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/test'>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'DEBUG': 10, 'INFO': 20}, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000246F30A35F8>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000246F32610D0>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x00000246F30A3470>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'True\': True, \'None\': None, \'False\': False}, {\'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'sql_queries\': <function debug.<locals>.<lambda> at 0x00000246F325E7B8>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'STATIC_URL\': \'/static/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000246F325F588>, \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'INFO\': 20}, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000246F30A35F8>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000246F32610D0>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x00000246F30A3470>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000246F326CB70>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000246F30A38D0>'
(0.002) UPDATE "django_session" SET "session_data" = 'MGZkNmU3YWY1YjUwNjJlNmI0NDRjNTgwZTBiZDdiZjcwZjk5NzQwODp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:37:21.570049+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MGZkNmU3YWY1YjUwNjJlNmI0NDRjNTgwZTBiZDdiZjcwZjk5NzQwODp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 37, 21, 570049, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:37:32.488388+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 37, 32, 488388, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'path': 'hosting/img/favicon.ico', 'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]]}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'N2YwNGFhYTM3ZmU0ZmQxYTZmYjgwZmVkNGNmNDE5MWU3ZmRiOGQwYjp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:37:32.947286+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2YwNGFhYTM3ZmU0ZmQxYTZmYjgwZmVkNGNmNDE5MWU3ZmRiOGQwYjp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 37, 32, 947286, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:37:33.108425+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 37, 33, 108425, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'ZDkwNTJlYWFmMGM5MmFjMDMwYjdlOGY0NmYyN2EyNzA3YTM0NGU0Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:37:33.363110+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('ZDkwNTJlYWFmMGM5MmFjMDMwYjdlOGY0NmYyN2EyNzA3YTM0NGU0Nzp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2J1aWxkIjpmYWxzZSwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 37, 33, 363110, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:37:33.765320+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 37, 33, 765320, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MGZkNmU3YWY1YjUwNjJlNmI0NDRjNTgwZTBiZDdiZjcwZjk5NzQwODp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:37:33.973002+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MGZkNmU3YWY1YjUwNjJlNmI0NDRjNTgwZTBiZDdiZjcwZjk5NzQwODp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQiLCJjbXNfYnVpbGQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 37, 33, 973002, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T15:37:34.051053+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 15, 37, 34, 51053, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'True': True, 'None': None, 'False': False}, {'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'sql_queries': <function debug.<locals>.<lambda> at 0x00000246F339F6A8>, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'STATIC_URL': '/static/', 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x00000246F33B0198>, 'debug': True, 'TIME_ZONE': 'UTC', 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'WARNING': 30, 'ERROR': 40, 'DEBUG': 10, 'INFO': 20}, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000246F33AF9E8>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x00000246F339FC80>}, {}, {'is_paginated': False, 'vms': [], 'paginator': <django.core.paginator.Paginator object at 0x00000246F3021B38>, 'page_obj': <Page 1 of 1>, 'object_list': [], 'view': <hosting.views.VirtualMachinesPlanListView object at 0x00000246F33AF0F0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'True\': True, \'None\': None, \'False\': False}, {\'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'sql_queries\': <function debug.<locals>.<lambda> at 0x00000246F339F6A8>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'STATIC_URL\': \'/static/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000246F33B0198>, \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'INFO\': 20}, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000246F33AF9E8>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000246F339FC80>}, {}, {\'is_paginated\': False, \'vms\': [], \'paginator\': <django.core.paginator.Paginator object at 0x00000246F3021B38>, \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x00000246F33AF0F0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x00000246F33BE6D8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x00000246F33AFA90>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'True\': True, \'None\': None, \'False\': False}, {\'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'sql_queries\': <function debug.<locals>.<lambda> at 0x00000246F339F6A8>, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'STATIC_URL\': \'/static/\', \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x00000246F33B0198>, \'debug\': True, \'TIME_ZONE\': \'UTC\', \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'WARNING\': 30, \'ERROR\': 40, \'DEBUG\': 10, \'INFO\': 20}, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x00000246F33AF9E8>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x00000246F339FC80>}, {}, {\'is_paginated\': False, \'vms\': [], \'paginator\': <django.core.paginator.Paginator object at 0x00000246F3021B38>, \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x00000246F33AF0F0>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x00000246F33B0D68>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'N2YwNGFhYTM3ZmU0ZmQxYTZmYjgwZmVkNGNmNDE5MWU3ZmRiOGQwYjp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T15:37:37.189703+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2YwNGFhYTM3ZmU0ZmQxYTZmYjgwZmVkNGNmNDE5MWU3ZmRiOGQwYjp7Il9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 15, 37, 37, 189703, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.007) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.050) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.030)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.006) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:23.651038+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 23, 651038, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/test
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/test'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/test'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/test'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/test'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/test'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-30T18:04:24.947649+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 30, 18, 4, 24, 947649, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:25.122124+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 25, 122124, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T18:04:25.410854+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 18, 4, 25, 410854, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:25.508941+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 25, 508941, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'ODhiYzU5Y2NlMmJkNmE3ZjNlMjJjZWU2NGM0NzdkZDQxYzM1NzQ3Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-30T18:04:25.754162+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('ODhiYzU5Y2NlMmJkNmE3ZjNlMjJjZWU2NGM0NzdkZDQxYzM1NzQ3Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 30, 18, 4, 25, 754162, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:25.851101+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 25, 851101, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'TIME_ZONE': 'UTC', 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'debug': True, 'sql_queries': <function debug.<locals>.<lambda> at 0x000002244D8F4400>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'STATIC_URL': '/static/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002244D8F4C80>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D8DD470>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D8EFC18>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10}}, {}, {'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000002244D5C1518>, 'view': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D8D3780>, 'vms': [], 'page_obj': <Page 1 of 1>, 'is_paginated': False}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244D8F4400>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244D8F4C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D8DD470>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D8EFC18>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244D5C1518>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D8D3780>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000002244D8FF240>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002244D8DD3C8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244D8F4400>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244D8F4C80>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D8DD470>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D8EFC18>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244D5C1518>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D8D3780>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000002244D8D34A8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T18:04:29.148178+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 18, 4, 29, 148178, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:40.311721+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 40, 311721, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-30T18:04:40.828880+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 30, 18, 4, 40, 828880, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:40.925972+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 40, 925972, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T18:04:41.177718+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 18, 4, 41, 177718, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:41.612075+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 41, 612075, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'ODhiYzU5Y2NlMmJkNmE3ZjNlMjJjZWU2NGM0NzdkZDQxYzM1NzQ3Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-30T18:04:41.867294+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('ODhiYzU5Y2NlMmJkNmE3ZjNlMjJjZWU2NGM0NzdkZDQxYzM1NzQ3Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 30, 18, 4, 41, 867294, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:41.948182+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 41, 948182, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'TIME_ZONE': 'UTC', 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'debug': True, 'sql_queries': <function debug.<locals>.<lambda> at 0x000002244D9A5F28>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'STATIC_URL': '/static/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002244D9D39D8>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D9D7860>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D9B2F98>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10}}, {}, {'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000002244DA2EB00>, 'view': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D9D7EF0>, 'vms': [], 'page_obj': <Page 1 of 1>, 'is_paginated': False}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244D9A5F28>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244D9D39D8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D9D7860>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D9B2F98>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244DA2EB00>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D9D7EF0>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000002244D9E90B8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002244D9D77B8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244D9A5F28>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244D9D39D8>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D9D7860>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D9B2F98>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244DA2EB00>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D9D7EF0>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000002244D9BC748>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T18:04:44.470715+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 18, 4, 44, 470715, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:04:57.944104+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 4, 57, 944104, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'TIME_ZONE': 'UTC', 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'debug': True, 'sql_queries': <function debug.<locals>.<lambda> at 0x000002244DAA7840>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'STATIC_URL': '/static/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002244DAA7950>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D9CB2E8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D9F0978>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10}}, {}, {'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000002244D6B62B0>, 'view': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D9B2E10>, 'vms': [], 'page_obj': <Page 1 of 1>, 'is_paginated': False}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244DAA7840>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244DAA7950>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D9CB2E8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D9F0978>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244D6B62B0>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D9B2E10>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000002244DAA8AC8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002244D9CB160>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244DAA7840>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244DAA7950>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244D9CB2E8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D9F0978>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244D6B62B0>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244D9B2E10>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000002244D9F07B8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-30T18:05:00.623520+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 30, 18, 5, 0, 623520, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:05:06.701857+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 5, 6, 701857, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', "expire_date" = '2017-08-30T18:05:07.130258+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('YWExMmFhNGYxZGFhMDRhNDM5NzNlZTg5MjdiODJlNmQ3NDZiOWNlMzp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2lkIjoiMyIsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUifQ==', datetime.datetime(2017, 8, 30, 18, 5, 7, 130258, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:05:07.212329+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 5, 7, 212329, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'ODhiYzU5Y2NlMmJkNmE3ZjNlMjJjZWU2NGM0NzdkZDQxYzM1NzQ3Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-30T18:05:07.497548+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('ODhiYzU5Y2NlMmJkNmE3ZjNlMjJjZWU2NGM0NzdkZDQxYzM1NzQ3Njp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfaGFzaCI6Ijg5MzAzNTYzMjRmMDY1MmQ4NDNlZjcyMmQ0Mjc2ZGYwMDljOWNiZGUiLCJjbXNfZWRpdCI6ZmFsc2UsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 30, 18, 5, 7, 497548, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:05:07.607120+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 5, 7, 607120, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', "expire_date" = '2017-08-30T18:05:07.908322+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('Yzg1M2QyNWJlYjYwNTdlMjViZjgyYzIzMGY3MTMxNjFhODg4N2VkNjp7ImNtc19idWlsZCI6ZmFsc2UsIl9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiY21zX2VkaXQiOmZhbHNlfQ==', datetime.datetime(2017, 8, 30, 18, 5, 7, 908322, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."expire_date" > '2017-08-16T18:05:08.364627+00:00'::timestamptz AND "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'); args=(datetime.datetime(2017, 8, 16, 18, 5, 8, 364627, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'TIME_ZONE': 'UTC', 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'debug': True, 'sql_queries': <function debug.<locals>.<lambda> at 0x000002244DB82378>, 'MEDIA_URL': '/media/', 'CMS_MEDIA_URL': '/media/cms/', 'STATIC_URL': '/static/', 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000002244DB82400>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244DB87978>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D6B62B0>, 'DEFAULT_MESSAGE_LEVELS': {'SUCCESS': 25, 'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10}}, {}, {'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000002244DBDAEF0>, 'view': <hosting.views.VirtualMachinesPlanListView object at 0x000002244DB6B550>, 'vms': [], 'page_obj': <Page 1 of 1>, 'is_paginated': False}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244DB82378>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244DB82400>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244DB87978>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D6B62B0>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244DBDAEF0>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244DB6B550>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000002244DBE7438>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000002244DB87908>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'TIME_ZONE\': \'UTC\', \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'debug\': True, \'sql_queries\': <function debug.<locals>.<lambda> at 0x000002244DB82378>, \'MEDIA_URL\': \'/media/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'STATIC_URL\': \'/static/\', \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000002244DB82400>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000002244DB87978>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000002244D6B62B0>, \'DEFAULT_MESSAGE_LEVELS\': {\'SUCCESS\': 25, \'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10}}, {}, {\'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000002244DBDAEF0>, \'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000002244DB6B550>, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'is_paginated\': False}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000002244D9CBE48>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', "expire_date" = '2017-08-30T18:05:11.332826+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MjA5M2NhYzdhODFkOTYxMTg0ZjAxZjFkNzk5MGQwNDE4MzRiNDFiNDp7ImNtc19idWlsZCI6ZmFsc2UsImNtc19lZGl0IjpmYWxzZSwiX2F1dGhfdXNlcl9oYXNoIjoiODkzMDM1NjMyNGYwNjUyZDg0M2VmNzIyZDQyNzZkZjAwOWM5Y2JkZSIsIl9hdXRoX3VzZXJfaWQiOiIzIiwiX2F1dGhfdXNlcl9iYWNrZW5kIjoiZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5kcy5Nb2RlbEJhY2tlbmQifQ==', datetime.datetime(2017, 8, 30, 18, 5, 11, 332826, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.005) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.033) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."published" = true AND "cms_title"."publisher_is_draft" = false AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(True, False, 1, '')
(0.026)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.005) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()
(0.016) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:05:42.758271+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 5, 42, 758271, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCDF0E7B8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCDD0B7F0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCDF110D0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCDF0F550>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCDC03F28>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCDF0E7B8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCDD0B7F0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCDF110D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCDF0F550>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCDC03F28>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCDF1CB70>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCDD0B7B8>'
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:05:43.713227+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 5, 43, 713227, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:05:52.279583+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 5, 52, 279583, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:05:52.948113+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 5, 52, 948113, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:05:53.377492+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 5, 53, 377492, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:05:53.697216+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 5, 53, 697216, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:05:53.803785+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 5, 53, 803785, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:05:54.074966+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 5, 54, 74966, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:05:54.482238+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 5, 54, 482238, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE04E2F0>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE063BA8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE04E9D8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE067710>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE0634A8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCE0B23C8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE04E2F0>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE063BA8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE04E9D8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE067710>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE0634A8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE0B23C8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE06F908>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE063AC8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE04E2F0>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE063BA8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE04E9D8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE067710>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE0634A8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE0B23C8>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCE0671D0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:05:57.726139+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 5, 57, 726139, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:13:00.325596+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 13, 0, 325596, tzinfo=<UTC>))
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE135E18>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE11BE10>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE11C730>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE12FD68>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCE0B4DA0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE135E18>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE11BE10>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE11C730>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE12FD68>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCE0B4DA0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE12CE48>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE11BCC0>'
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:13:00.945009+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 13, 0, 945009, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:13:09.360864+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 13, 9, 360864, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:13:09.870702+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 13, 9, 870702, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:13:09.950778+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 13, 9, 950778, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:13:10.147386+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 13, 10, 147386, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:13:10.514467+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 13, 10, 514467, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:13:10.695087+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 13, 10, 695087, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:13:10.788149+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 13, 10, 788149, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE1E20D0>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE1F9630>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE1E2950>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE1ED860>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE1FB6D8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCE11B5C0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE1E20D0>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE1F9630>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE1E2950>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE1ED860>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE1FB6D8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE11B5C0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE210E10>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE1F9550>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE1E20D0>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE1F9630>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE1E2950>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE1ED860>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE1FB6D8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE11B5C0>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCE1E0278>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.012) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:13:14.527015+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 13, 14, 527015, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:55:22.787288+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 55, 22, 787288, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE2D48C8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE1E0978>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE2BB1E0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE2C5CC0>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCE1E06A0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE2D48C8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE1E0978>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE2BB1E0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE2C5CC0>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCE1E06A0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE2D0C18>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE1E0668>'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:55:23.193604+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 55, 23, 193604, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:55:32.578543+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 55, 32, 578543, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:55:33.057958+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 55, 33, 57958, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:55:33.426083+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 55, 33, 426083, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:55:33.606230+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 55, 33, 606230, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:55:33.681281+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 55, 33, 681281, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:55:33.862155+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 55, 33, 862155, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T18:55:34.225885+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 18, 55, 34, 225885, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE2CD950>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE38A5F8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE2CD048>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE386F28>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE38AE80>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCE38AF28>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE2CD950>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE38A5F8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE2CD048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE386F28>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE38AE80>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE38AF28>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE3AA128>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE38A518>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE2CD950>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE38A5F8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE2CD048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE386F28>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE38AE80>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE38AF28>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCE386940>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T18:55:37.548655+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 18, 55, 37, 548655, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:22:51.770564+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 22, 51, 770564, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE477400>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE4689B0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE477C80>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE4619E8>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCE468F28>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE477400>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE4689B0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE477C80>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE4619E8>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCE468F28>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE46F550>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE468F98>'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:22:52.011733+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 22, 52, 11733, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:23:00.506298+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 23, 0, 506298, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:23:01.032607+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 23, 1, 32607, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:23:01.111675+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 23, 1, 111675, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:23:01.341877+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 23, 1, 341877, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:23:01.785710+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 23, 1, 785710, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:23:01.999552+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 23, 1, 999552, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:23:02.084127+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 23, 2, 84127, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF50DF28>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF50BEB8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF50D048>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF500588>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF50B5C0>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCE389F28>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF50DF28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF50BEB8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF50D048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF500588>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF50B5C0>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE389F28>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF524780>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF50BEF0>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF50DF28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF50BEB8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF50D048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF500588>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF50B5C0>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE389F28>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF500940>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:23:05.412340+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 23, 5, 412340, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:37:30.711238+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 37, 30, 711238, tzinfo=<UTC>))
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF5DFF28>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF5283C8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF5D1840>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF5069B0>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCDC0C9E8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF5DFF28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF5283C8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF5D1840>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF5069B0>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCDC0C9E8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF5D6A90>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF500E48>'
(0.004) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:37:31.154542+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 37, 31, 154542, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:37:41.641987+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 37, 41, 641987, tzinfo=<UTC>))
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:37:41.878187+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 37, 41, 878187, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:37:42.233787+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 37, 42, 233787, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:37:42.535374+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 37, 42, 535374, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:37:42.646448+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 37, 42, 646448, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:37:43.078737+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 37, 43, 78737, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:37:43.581571+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 37, 43, 581571, tzinfo=<UTC>))
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF685F28>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF6AA198>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF6B4048>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF69E780>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF696A58>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCF6AA6A0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF685F28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF6AA198>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF6B4048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF69E780>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF696A58>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF6AA6A0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF6B7CC0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF6AA0B8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF685F28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF6AA198>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF6B4048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF69E780>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF696A58>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF6AA6A0>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF69EDA0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:37:47.050862+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 37, 47, 50862, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:41:41.246968+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 41, 41, 246968, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF782AE8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF7736A0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF770400>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF7675C0>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCF773DD8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF782AE8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF7736A0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF770400>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF7675C0>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCF773DD8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF77C5F8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF773C18>'
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:41:41.694767+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 41, 41, 694767, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:41:50.026385+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 41, 50, 26385, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:41:50.435228+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 41, 50, 435228, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:41:50.501404+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 41, 50, 501404, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:41:50.668522+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 41, 50, 668522, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:41:51.039269+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 41, 51, 39269, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:41:51.186867+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 41, 51, 186867, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:41:51.286433+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 41, 51, 286433, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF847950>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF837CF8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF8470D0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF84D828>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF8375F8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCF837470>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF847950>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF837CF8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF8470D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF84D828>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF8375F8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF837470>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF85D6A0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF837C18>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF847950>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF837CF8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF8470D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF84D828>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF8375F8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF837470>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF839F60>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:41:54.478827+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 41, 54, 478827, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:50:48.403190+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 50, 48, 403190, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF922620>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF83E438>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF922EA0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF916400>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCF83E550>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF922620>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF83E438>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF922EA0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF916400>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCF83E550>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF91C828>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF83E588>'
(0.001) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:50:48.618341+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 50, 48, 618341, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:50:57.476191+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 50, 57, 476191, tzinfo=<UTC>))
(0.005) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:50:57.788451+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 50, 57, 788451, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:50:57.858509+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 50, 57, 858509, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:50:58.006128+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 50, 58, 6128, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:50:58.393010+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 50, 58, 393010, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:50:58.563175+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 50, 58, 563175, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.017) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:50:58.639232+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 50, 58, 639232, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF9EC840>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF9F13C8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF9EC0D0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF9DD2B0>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF9D7C88>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCF9F19B0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF9EC840>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF9F13C8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF9EC0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF9DD2B0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF9D7C88>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF9F19B0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF9FEDA0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF9F12E8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF9EC840>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF9F13C8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF9EC0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF9DD2B0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF9D7C88>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF9F19B0>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF9DD6A0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:51:02.002688+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 51, 2, 2688, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:52:47.743333+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 52, 47, 743333, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFAC3D90>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFAB9860>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFAC3400>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFAB8AC8>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCFAB9CC0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFAC3D90>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFAB9860>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFAC3400>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFAB8AC8>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCFAB9CC0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCFAAFE48>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFAB9C18>'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:52:48.346234+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 52, 48, 346234, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:52:57.441191+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 52, 57, 441191, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:52:57.933039+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 52, 57, 933039, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:52:58.020102+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 52, 58, 20102, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:52:58.156193+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 52, 58, 156193, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:52:58.506483+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 52, 58, 506483, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:52:58.719653+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 52, 58, 719653, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:52:58.791745+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 52, 58, 791745, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFB6C158>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFB95668>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFB8E1E0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFB79A58>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFB7D6D8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCF9DDEB8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFB6C158>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFB95668>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFB8E1E0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFB79A58>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFB7D6D8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF9DDEB8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCFBAB048>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFB95588>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFB6C158>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFB95668>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFB8E1E0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFB79A58>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFB7D6D8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF9DDEB8>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCFB88048>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:01.860920+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 1, 860920, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:19.985325+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 19, 985325, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFC6BF28>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFB76A20>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFC6B598>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFC51048>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCFBAEDD8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFC6BF28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFB76A20>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFC6B598>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFC51048>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCFBAEDD8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCFC69438>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFB76B38>'
(0.004) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:20.630755+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 20, 630755, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:29.061361+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 29, 61361, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:29.535055+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 29, 535055, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:29.627131+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 29, 627131, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:29.849326+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 29, 849326, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:30.235194+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 30, 235194, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:30.427850+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 30, 427850, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:30.496934+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 30, 496934, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFD33F28>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFD35DD8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFD33488>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFD3BB00>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFD356D8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCFD35438>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFD33F28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFD35DD8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFD33488>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFD3BB00>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFD356D8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCFD35438>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCFD8A748>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFD35CF8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFD33F28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFD35DD8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFD33488>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFD3BB00>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFD356D8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCFD35438>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCFBAEEB8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:33.048992+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 33, 48992, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:46.035301+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 46, 35301, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFE09598>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFDF0E80>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFE09BF8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFDFF6D8>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCFDF0780>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFE09598>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFDF0E80>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFE09BF8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFDFF6D8>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCFDF0780>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCFDF4898>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFDF0DD8>'
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:46.481599+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 46, 481599, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:56.453659+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 56, 453659, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:56.859299+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 56, 859299, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.004) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:56.908332+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 56, 908332, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:57.024420+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 57, 24420, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:57.380701+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 57, 380701, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:53:57.586895+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 53, 57, 586895, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:53:57.690976+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 53, 57, 690976, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFED8EA0>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFEDC588>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFEEB0D0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFEE85C0>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFEDC748>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCFE10FD0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFED8EA0>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFEDC588>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFEEB0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFEE85C0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFEDC748>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCFE10FD0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCFECC828>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFEDC4A8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFED8EA0>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFEDC588>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFEEB0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFEE85C0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFEDC748>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCFE10FD0>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCFED3048>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:54:00.504020+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 54, 0, 504020, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:56:02.850188+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 56, 2, 850188, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFFB4620>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFFA7358>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFFB4EA0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFFA6978>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCFFA7C18>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFFB4620>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFFA7358>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFFB4EA0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCFFA6978>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCFFA7C18>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCFF9A160>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFFA7EB8>'
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:56:03.174903+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 56, 3, 174903, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:56:08.825412+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 56, 8, 825412, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:56:09.290781+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 56, 9, 290781, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.016) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:56:09.409395+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 56, 9, 409395, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:56:09.756308+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 56, 9, 756308, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:56:10.179251+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 56, 10, 179251, tzinfo=<UTC>))
(0.013) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:56:10.478526+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 56, 10, 478526, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:56:10.573601+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 56, 10, 573601, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFFADD90>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0080898>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFFAD0D0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD0086F98>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFD0080EF0>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFD0080E48>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFFADD90>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0080898>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFFAD0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD0086F98>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFD0080EF0>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFD0080E48>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFD008EFD0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFD00807F0>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFFADD90>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0080898>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFFAD0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD0086F98>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFD0080EF0>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFD0080E48>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFD006D7F0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:56:13.740159+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 56, 13, 740159, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:57:46.922146+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 57, 46, 922146, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFD015DF28>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD006D048>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFD015D488>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD0148320>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFD013E898>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFD015DF28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD006D048>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFD015D488>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD0148320>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFD013E898>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFD015A438>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFD013ED30>'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:57:47.459005+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 57, 47, 459005, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:57:56.121377+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 57, 56, 121377, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:57:56.697855+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 57, 56, 697855, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:57:57.077935+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 57, 57, 77935, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:57:57.248574+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 57, 57, 248574, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:57:57.335653+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 57, 57, 335653, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:57:57.515384+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 57, 57, 515384, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T19:57:57.638040+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 19, 57, 57, 638040, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFD0220598>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0224D30>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFD0220AE8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD00687F0>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFD0224630>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFD0224240>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFD0220598>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0224D30>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFD0220AE8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD00687F0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFD0224630>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFD0224240>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFD0234908>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFD0224C50>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFD0220598>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0224D30>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFD0220AE8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD00687F0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFD0224630>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFD0224240>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFD0154A20>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T19:58:00.863501+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 19, 58, 0, 863501, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:34:27.708319+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 34, 27, 708319, tzinfo=<UTC>))
(0.027) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFD02F79D8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD02EC940>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFD02F7378>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD02E6908>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFD02EC7B8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFD02F79D8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD02EC940>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFD02F7378>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD02E6908>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFD02EC7B8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFD02F47F0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFD02EC9E8>'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:34:28.145169+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 34, 28, 145169, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:34:37.536703+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 34, 37, 536703, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:34:37.868423+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 34, 37, 868423, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:34:38.237223+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 34, 38, 237223, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:34:38.397851+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 34, 38, 397851, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:34:38.493925+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 34, 38, 493925, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.001) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:34:38.661050+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 34, 38, 661050, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:34:38.759706+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 34, 38, 759706, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF9EC840>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFAB8EF0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF9EC268>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF9D4438>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFABBB70>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCFF392E8>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF9EC840>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFAB8EF0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF9EC268>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF9D4438>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFABBB70>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCFF392E8>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF9E3E48>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCFAB8F60>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF9EC840>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCFAB8EF0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF9EC268>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF9D4438>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCFABBB70>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCFF392E8>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFD00D4DD8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:34:42.203666+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 34, 42, 203666, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.008) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:25.925238+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 25, 925238, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFD03BB510>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0224710>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFD03BBD90>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD022B470>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCFAB8198>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFD03BB510>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFD0224710>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFD03BBD90>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFD022B470>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCFAB8198>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF911CC0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFD0224550>'
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:26.161904+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 26, 161904, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:35.201010+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 35, 201010, tzinfo=<UTC>))
(0.004) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:35.478089+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 35, 478089, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.005) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:35.535130+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 35, 535130, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:35.674242+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 35, 674242, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.006) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:36.034495+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 36, 34495, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:36.248661+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 36, 248661, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:36.420286+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 36, 420286, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFA88950>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF84D2E8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFA88048>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF6B9CF8>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF84DF98>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCF6962B0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFA88950>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF84D2E8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFA88048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF6B9CF8>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF84DF98>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF6962B0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF77A668>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF84D0F0>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFA88950>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF84D2E8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFA88048>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF6B9CF8>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF84DF98>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF6962B0>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF6B9EF0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.004) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:39.704008+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 39, 704008, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:43.155160+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 43, 155160, tzinfo=<UTC>))
(0.031) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF931D08>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF85FEF0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF935598>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF5E1748>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCF7761D0>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF931D08>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF85FEF0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF935598>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF5E1748>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCF7761D0>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF698550>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF85F978>'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:43.683012+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 43, 683012, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.007) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:48.758205+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 48, 758205, tzinfo=<UTC>))
(0.006) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:48.997399+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 48, 997399, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:49.350794+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 49, 350794, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:49.604038+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 49, 604038, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:49.710125+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 49, 710125, tzinfo=<UTC>))
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:49.937314+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 49, 937314, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:40:50.333383+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 40, 50, 333383, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE1C69D8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE4610F0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE1C6950>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE2D0550>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE461748>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCE2BC278>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE1C69D8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE4610F0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE1C6950>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE2D0550>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE461748>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE2BC278>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE389780>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE461080>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE1C69D8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE4610F0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE1C6950>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE2D0550>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE461748>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE2BC278>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCE2D05F8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:40:53.038546+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 40, 53, 38546, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:42:08.321207+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 42, 8, 321207, tzinfo=<UTC>))
(0.007) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE22CBF8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF5282B0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE22F510>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF500CC0>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCF528828>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE22CBF8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF5282B0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE22F510>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF500CC0>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCF528828>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF50BD68>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF528E48>'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:42:08.592461+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 42, 8, 592461, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:42:18.898807+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 42, 18, 898807, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:42:19.552344+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 42, 19, 552344, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:42:19.723493+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 42, 19, 723493, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:42:20.230920+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 42, 20, 230920, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:42:20.661210+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 42, 20, 661210, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:42:20.923434+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 42, 20, 923434, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:42:21.019518+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 42, 21, 19518, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCFAFCBF8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE121BE0>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCFAFC0D0>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE3905C0>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE1EDE80>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCE121A90>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFAFCBF8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE121BE0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFAFC0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE3905C0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE1EDE80>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE121A90>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE11BDD8>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE121438>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCFAFCBF8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE121BE0>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCFAFC0D0>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE3905C0>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCE1EDE80>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCE121A90>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCE0673C8>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.010) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:42:24.325030+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 42, 24, 325030, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:42:49.597776+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 42, 49, 597776, tzinfo=<UTC>))
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCDFC9488>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE1E6B00>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCDFC9BF8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE1FBA58>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCE1E6F98>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCDFC9488>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCE1E6B00>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCDFC9BF8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCE1FBA58>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCE1E6F98>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCDFA0B70>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCE1E6828>'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:42:49.975526+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 42, 49, 975526, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.011) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:42:59.675141+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 42, 59, 675141, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:43:00.306624+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 43, 0, 306624, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:43:00.401699+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 43, 0, 401699, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:43:00.615511+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 43, 0, 615511, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:43:01.481611+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 43, 1, 481611, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:43:01.690767+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 43, 1, 690767, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:43:01.773821+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 43, 1, 773821, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF96B8C8>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF970470>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF948C80>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF967550>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF9574A8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCDF0FD68>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF96B8C8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF970470>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF948C80>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF967550>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF9574A8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCDF0FD68>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF783DA0>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF970390>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF96B8C8>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF970470>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF948C80>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF967550>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF9574A8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCDF0FD68>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF9674E0>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:43:04.809889+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 43, 4, 809889, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.012) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:47:04.516988+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 47, 4, 516988, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCE3B0378>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF964D68>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCE3B0BF8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF57CAC8>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCDF21F28>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCE3B0378>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF964D68>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCE3B0BF8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF57CAC8>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCDF21F28>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCE3EB400>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCDF21748>'
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:47:04.853185+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 47, 4, 853185, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.014) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:47:11.908800+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 47, 11, 908800, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:47:12.647941+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 47, 12, 647941, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:47:12.751510+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 47, 12, 751510, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:47:13.061218+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 47, 13, 61218, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:47:13.497007+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 47, 13, 497007, tzinfo=<UTC>))
(0.011) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:47:13.825727+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 47, 13, 825727, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.010) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:47:14.132430+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 47, 14, 132430, tzinfo=<UTC>))
(0.010) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF5ACE18>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF6C3DD8>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF6E4400>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF8FCA20>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF6C35F8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCF8E9160>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF5ACE18>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF6C3DD8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF6E4400>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF8FCA20>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF6C35F8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF8E9160>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF6E6780>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF6C3D30>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF5ACE18>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF6C3DD8>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF6E4400>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF8FCA20>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF6C35F8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF8E9160>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF6D8780>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.002) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:47:18.035529+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 47, 18, 35529, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.009) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:50:39.280636+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 50, 39, 280636, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF7F5D08>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/test'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF7EA978>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF7F56A8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF7E54A8>}, {}, {'view': <django.views.generic.base.TemplateView object at 0x000001FFCF7EA860>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF7F5D08>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/test\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF7EA978>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF7F56A8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF7E54A8>}, {}, {\'view\': <django.views.generic.base.TemplateView object at 0x000001FFCF7EA860>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF7F2550>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machine_detail.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF7EA940>'
(0.002) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:50:39.538309+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 50, 39, 538309, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.004) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:50:50.195077+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 50, 50, 195077, tzinfo=<UTC>))
(0.003) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Not Found: /hosting/img/favicon.ico
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\opennebula_api\\\\urls.py'> (None:opennebula_api) ^open_api/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'nosystemd.urls' from 'C:\\\\Users\\\\Arvind\\\\Work\\\\Projects\\\\ungleich\\\\dynamicweb\\\\nosystemd\\\\urls.py'> (None:nosystemd) ^nosystemd/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\taggit_autosuggest\\\\urls.py'> (None:None) ^taggit_autosuggest/>"
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'LocaleRegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'LocaleRegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in '<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>'
Exception while resolving variable 'name' in template 'unknown'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\handlers\base.py", line 134, in get_response
resolver_match = resolver.resolve(request.path_info)
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\core\urlresolvers.py", line 404, in resolve
raise Resolver404({'tried': tried, 'path': new_path})
django.core.urlresolvers.Resolver404: {'tried': [[<RegexURLPattern None ^index.html$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern None test/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern index index/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern djangohosting django/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern nodejshosting nodejs/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern railshosting rails/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern pricing pricing/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern payment payment/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern orders orders/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern bills bills/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_order cancel_order/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_virtual_machine create_virtual_machine/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern virtual_machines my-virtual-machines/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern ssh_keys ssh_keys/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern choice_ssh_keys ssh_keys_choice/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern delete_ssh_key delete_ssh_key/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern create_ssh_key create_ssh_key/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern notifications ^notifications/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern read_notification ^notifications/(?P<pk>\d+)/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern login login/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup signup/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern signup-validate signup-validate/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password reset-password/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern reset_password_confirm reset-password-confirm/(?P<uidb64>[0-9A-Za-z]+)-(?P<token>.+)/$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern logout ^logout/?$>], [<RegexURLResolver <module 'hosting.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\hosting\\urls.py'> (None:hosting) ^hosting/>, <RegexURLPattern validate ^validate/(?P<validate_slug>.*)/$>], [<RegexURLResolver <module 'opennebula_api.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\opennebula_api\\urls.py'> (None:opennebula_api) ^open_api/>], [<RegexURLPattern rails.hosting ^railshosting/>], [<RegexURLPattern node.hosting ^nodehosting/>], [<RegexURLPattern django.hosting ^djangohosting/>], [<RegexURLResolver <module 'nosystemd.urls' from 'C:\\Users\\Arvind\\Work\\Projects\\ungleich\\dynamicweb\\nosystemd\\urls.py'> (None:nosystemd) ^nosystemd/>], [<RegexURLResolver <module 'taggit_autosuggest.urls' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\taggit_autosuggest\\urls.py'> (None:None) ^taggit_autosuggest/>], [<RegexURLPattern None ^jsi18n/(?P<packages>\S+?)/$>], [<RegexURLPattern None ^media\/(?P<path>.*)$>], [<LocaleRegexURLResolver <RegexURLPattern list> (None:None) ^en-us/>], [<RegexURLPattern None ^media/(?P<path>.*)$>], [<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\Users\\Arvind\\venv\\ungleich\\lib\\site-packages\\debug_toolbar\\toolbar.py'> (djdt:djdt) ^__debug__/>]], 'path': 'hosting/img/favicon.ico'}
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
TypeError: 'RegexURLResolver' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'RegexURLResolver' object has no attribute 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'name'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [name] in "<RegexURLResolver <module 'debug_toolbar.toolbar' from 'C:\\\\Users\\\\Arvind\\\\venv\\\\ungleich\\\\lib\\\\site-packages\\\\debug_toolbar\\\\toolbar.py'> (djdt:djdt) ^__debug__/>"
(0.001) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:50:50.431963+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 50, 50, 431963, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:50:50.787014+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 50, 50, 787014, tzinfo=<UTC>))
(0.009) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.004) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:50:51.025713+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 50, 51, 25713, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.013) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:50:51.124800+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 50, 51, 124800, tzinfo=<UTC>))
(0.008) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
(0.003) UPDATE "django_session" SET "session_data" = 'MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:50:51.406055+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('MDA1NDA2NTY4NDcyMmUwYWJhYzJlYmM5MGI0YWMyNWI0YmNhZDg5MTp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJjbXNfYnVpbGQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 50, 51, 406055, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.015) SELECT "django_session"."session_key", "django_session"."session_data", "django_session"."expire_date" FROM "django_session" WHERE ("django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9' AND "django_session"."expire_date" > '2017-08-16T20:50:51.818430+00:00'::timestamptz); args=('d0wmn97vrvjrtw6nzmqy0zci8ba82kj9', datetime.datetime(2017, 8, 16, 20, 50, 51, 818430, tzinfo=<UTC>))
(0.012) SELECT "membership_customuser"."id", "membership_customuser"."password", "membership_customuser"."last_login", "membership_customuser"."is_superuser", "membership_customuser"."site_id", "membership_customuser"."name", "membership_customuser"."email", "membership_customuser"."validated", "membership_customuser"."validation_slug", "membership_customuser"."is_admin" FROM "membership_customuser" WHERE "membership_customuser"."id" = 3; args=(3,)
Exception while resolving variable 'GOOGLE_ANALYTICS_PROPERTY_ID' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'GOOGLE_ANALYTICS_PROPERTY_ID'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [GOOGLE_ANALYTICS_PROPERTY_ID] in "[{'False': False, 'True': True, 'None': None}, {'STATIC_URL': '/static/', 'CMS_MEDIA_URL': '/media/cms/', 'TIME_ZONE': 'UTC', 'debug': True, 'SEKIZAI_CONTENT_HOLDER': defaultdict(<class 'sekizai.data.UniqueSequence'>, {}), 'DEFAULT_MESSAGE_LEVELS': {'INFO': 20, 'ERROR': 40, 'WARNING': 30, 'DEBUG': 10, 'SUCCESS': 25}, 'csrf_token': <SimpleLazyObject: 'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW'>, 'MEDIA_URL': '/media/', 'sql_queries': <function debug.<locals>.<lambda> at 0x000001FFCF65DF28>, 'user': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, 'request': <WSGIRequest: GET '/hosting/my-virtual-machines'>, 'messages': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF647F98>, 'CMS_TEMPLATE': <function cms_settings.<locals>.<lambda> at 0x000001FFCF8937B8>, 'perms': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF645668>}, {}, {'view': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF6470B8>, 'is_paginated': False, 'vms': [], 'page_obj': <Page 1 of 1>, 'object_list': [], 'paginator': <django.core.paginator.Paginator object at 0x000001FFCF7E4C50>}, {}]"
Exception while resolving variable 'site_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'site_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [site_url] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF65DF28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF647F98>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF8937B8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF645668>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF6470B8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF7E4C50>}, {\'block\': <Block Node: navbar. Contents: [<TextNode: \'\\n\\n <!-- Navigation\'>, <IfNode>, <TextNode: \'"><img src="\'>, <django.contrib.staticfiles.templatetags.staticfiles.StaticFilesNode object at 0x000001FFCF64BC50>, <TextNode: \'"></a>\\n </\'>, <IfNode>, <TextNode: \'\\n <!-- /.n\'>]>}]'
Exception while resolving variable 'hosting_url' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\contrib\sessions\backends\base.py", line 48, in __getitem__
return self._session[key]
KeyError: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 891, in _resolve_lookup
current = getattr(current, bit)
AttributeError: 'SessionStore' object has no attribute 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'hosting_url'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [hosting_url] in '<django.contrib.sessions.backends.db.SessionStore object at 0x000001FFCF647EB8>'
Exception while resolving variable 'error' in template 'hosting/virtual_machines.html'.
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 883, in _resolve_lookup
current = current[bit]
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\context.py", line 77, in __getitem__
raise KeyError(key)
KeyError: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 889, in _resolve_lookup
if isinstance(current, BaseContext) and getattr(type(current), bit):
AttributeError: type object 'RequestContext' has no attribute 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 898, in _resolve_lookup
current = current[int(bit)]
ValueError: invalid literal for int() with base 10: 'error'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\Arvind\venv\ungleich\lib\site-packages\django\template\base.py", line 905, in _resolve_lookup
(bit, current)) # missing attribute
django.template.base.VariableDoesNotExist: Failed lookup for key [error] in '[{\'False\': False, \'True\': True, \'None\': None}, {\'STATIC_URL\': \'/static/\', \'CMS_MEDIA_URL\': \'/media/cms/\', \'TIME_ZONE\': \'UTC\', \'debug\': True, \'SEKIZAI_CONTENT_HOLDER\': defaultdict(<class \'sekizai.data.UniqueSequence\'>, {}), \'DEFAULT_MESSAGE_LEVELS\': {\'INFO\': 20, \'ERROR\': 40, \'WARNING\': 30, \'DEBUG\': 10, \'SUCCESS\': 25}, \'csrf_token\': <SimpleLazyObject: \'uRZWe4tfony4jQNJ6ftcbZQhRnZZY3eW\'>, \'MEDIA_URL\': \'/media/\', \'sql_queries\': <function debug.<locals>.<lambda> at 0x000001FFCF65DF28>, \'user\': <SimpleLazyObject: <CustomUser: arvind3@example.com>>, \'request\': <WSGIRequest: GET \'/hosting/my-virtual-machines\'>, \'messages\': <django.contrib.messages.storage.fallback.FallbackStorage object at 0x000001FFCF647F98>, \'CMS_TEMPLATE\': <function cms_settings.<locals>.<lambda> at 0x000001FFCF8937B8>, \'perms\': <django.contrib.auth.context_processors.PermWrapper object at 0x000001FFCF645668>}, {}, {\'view\': <hosting.views.VirtualMachinesPlanListView object at 0x000001FFCF6470B8>, \'is_paginated\': False, \'vms\': [], \'page_obj\': <Page 1 of 1>, \'object_list\': [], \'paginator\': <django.core.paginator.Paginator object at 0x000001FFCF7E4C50>}, {\'block\': <Block Node: content. Contents: [<TextNode: \'\\n<div>\\n\\t<div class="dashb\'>, <django.templatetags.i18n.TranslateNode object at 0x000001FFCF64F320>, <TextNode: \'</h3>\\n <di\'>, <IfNode>, <TextNode: \'\\n </div>\\n \'>, <IfNode>, <TextNode: \'\\n </table>\'>, <IfNode>, <TextNode: \'\\n\\n\\t\\t\\t</div>\\n\\n\\t </div>\\n\'>]>}]'
(0.003) UPDATE "django_session" SET "session_data" = 'N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', "expire_date" = '2017-08-30T20:50:55.044805+00:00'::timestamptz WHERE "django_session"."session_key" = 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9'; args=('N2M5NzgzYjU4MWI3MTYyYjVhNjllNzEyNzA0NzZkZjg0YWY2MjQ2ZDp7Il9hdXRoX3VzZXJfYmFja2VuZCI6ImRqYW5nby5jb250cmliLmF1dGguYmFja2VuZHMuTW9kZWxCYWNrZW5kIiwiY21zX2VkaXQiOmZhbHNlLCJfYXV0aF91c2VyX2hhc2giOiI4OTMwMzU2MzI0ZjA2NTJkODQzZWY3MjJkNDI3NmRmMDA5YzljYmRlIiwiY21zX2J1aWxkIjpmYWxzZSwiX2F1dGhfdXNlcl9pZCI6IjMifQ==', datetime.datetime(2017, 8, 30, 20, 50, 55, 44805, tzinfo=<UTC>), 'd0wmn97vrvjrtw6nzmqy0zci8ba82kj9')
(0.005) SELECT (1) AS "a" FROM "djangocms_blog_blogconfig" LIMIT 1; args=()
(0.007) SELECT "django_site"."id", "django_site"."domain", "django_site"."name" FROM "django_site" WHERE "django_site"."id" = 1; args=(1,)
(0.035) SELECT "cms_title"."id", "cms_title"."language", "cms_title"."title", "cms_title"."page_title", "cms_title"."menu_title", "cms_title"."meta_description", "cms_title"."slug", "cms_title"."path", "cms_title"."has_url_overwrite", "cms_title"."redirect", "cms_title"."page_id", "cms_title"."creation_date", "cms_title"."published", "cms_title"."publisher_is_draft", "cms_title"."publisher_public_id", "cms_title"."publisher_state", "cms_page"."id", "cms_page"."path", "cms_page"."depth", "cms_page"."numchild", "cms_page"."created_by", "cms_page"."changed_by", "cms_page"."parent_id", "cms_page"."creation_date", "cms_page"."changed_date", "cms_page"."publication_date", "cms_page"."publication_end_date", "cms_page"."in_navigation", "cms_page"."soft_root", "cms_page"."reverse_id", "cms_page"."navigation_extenders", "cms_page"."template", "cms_page"."site_id", "cms_page"."login_required", "cms_page"."limit_visibility_in_menu", "cms_page"."is_home", "cms_page"."application_urls", "cms_page"."application_namespace", "cms_page"."publisher_is_draft", "cms_page"."publisher_public_id", "cms_page"."languages", "cms_page"."revision_id", "cms_page"."xframe_options", "django_site"."id", "django_site"."domain", "django_site"."name" FROM "cms_title" INNER JOIN "cms_page" ON ("cms_title"."page_id" = "cms_page"."id") INNER JOIN "django_site" ON ("cms_page"."site_id" = "django_site"."id") WHERE ("cms_title"."publisher_is_draft" = false AND "cms_title"."published" = true AND "cms_page"."site_id" = 1 AND NOT ("cms_page"."application_urls" IS NULL) AND NOT ("cms_page"."application_urls" = '' AND "cms_page"."application_urls" IS NOT NULL)) ORDER BY "cms_page"."path" DESC; args=(False, True, 1, '')
(0.017)
SELECT c.relname, c.relkind
FROM pg_catalog.pg_class c
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
WHERE c.relkind IN ('r', 'v')
AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
AND pg_catalog.pg_table_is_visible(c.oid); args=None
(0.003) SELECT "django_migrations"."app", "django_migrations"."name" FROM "django_migrations"; args=()