Showing 100 of 224 unique parts/colors ( total quantity)
DJDT

Time

Resource usage

Resource Value
User CPU time 452.174 msec
System CPU time 10.039 msec
Total CPU time 462.213 msec
Elapsed time 505.747 msec
Context switches 525 voluntary, 6 involuntary

Browser timing

Timing attribute Timeline Milliseconds since navigation start (+length)

SQL queries from 1 connection

  • default 31.20 ms (11 queries )
Query Timeline Time (ms) Action
SELECT "lego_part"."id",
       "lego_part"."part_num",
       "lego_part"."name",
       "lego_part"."part_cat_id",
       "lego_part"."notes",
       "lego_part"."is_active",
       "lego_part"."search_vector",
       "lego_part"."ldraw_part_id",
       "lego_part"."bricklink_part_id",
       "lego_part"."ignore_color_errors",
       "lego_part"."part_material_id",
       "lego_part"."is_bricklink_minifig",
       "lego_part"."is_bricklink_book",
       "lego_part"."is_bricklink_gear",
       "lego_part"."show_generic_part_msg",
       "lego_partcategory"."id",
       "lego_partcategory"."name",
       "lego_partcategory"."part_count",
       "lego_partcategory"."img",
       "lego_partcategory"."slug",
       "lego_partmaterial"."id",
       "lego_partmaterial"."name",
       "lego_partoverlay"."part_id",
       "lego_partoverlay"."length",
       "lego_partstats"."part_id",
       "lego_partstats"."num_sets",
       "lego_partstats"."num_mocs",
       "lego_partstats"."num_set_parts",
       "lego_partstats"."num_moc_parts",
       "lego_partstats"."y1",
       "lego_partstats"."y2",
       "lego_partstats"."is_dirty"
  FROM
"lego_part"
 INNER JOIN
"lego_partcategory"
    ON
("lego_part"."part_cat_id" = "lego_partcategory"."id")
 INNER JOIN
"lego_partmaterial"
    ON
("lego_part"."part_material_id" = "lego_partmaterial"."id")
  LEFT OUTER JOIN
"lego_partoverlay"
    ON
("lego_part"."id" = "lego_partoverlay"."part_id")
  LEFT OUTER JOIN
"lego_partstats"
    ON
("lego_part"."id" = "lego_partstats"."part_id")
 WHERE
"lego_part"."part_num" = 'hinges-arms-and-turntables'
 LIMIT
21
SELECT ••• FROM "lego_part" INNER JOIN "lego_partcategory" ON ("lego_part"."part_cat_id" = "lego_partcategory"."id") INNER JOIN "lego_partmaterial" ON ("lego_part"."part_material_id" = "lego_partmaterial"."id") LEFT OUTER JOIN "lego_partoverlay" ON ("lego_part"."id" = "lego_partoverlay"."part_id") LEFT OUTER JOIN "lego_partstats" ON ("lego_part"."id" = "lego_partstats"."part_id") WHERE "lego_part"."part_num" = 'hinges-arms-and-turntables' LIMIT 21
0.60

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(122)
  part = get_or_none(Part.all_objects, part_num=slug1)

/home/nathan/rb/site/./rb/utils.py in get_or_none(605)
  return manager.get(**kwargs)

SELECT "lego_partcategory"."id",
       "lego_partcategory"."name",
       "lego_partcategory"."part_count",
       "lego_partcategory"."img",
       "lego_partcategory"."slug"
  FROM
"lego_partcategory"
 WHERE
"lego_partcategory"."slug" = 'hinges-arms-and-turntables'
 LIMIT
21
SELECT ••• FROM "lego_partcategory" WHERE "lego_partcategory"."slug" = 'hinges-arms-and-turntables' LIMIT 21
0.08

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(131)
  part_cat = get_or_none(PartCategory.objects, slug=slug)

/home/nathan/rb/site/./rb/utils.py in get_or_none(605)
  return manager.get(**kwargs)

SELECT "lego_part"."id",
       "lego_part"."part_num",
       "lego_part"."name",
       "lego_part"."part_cat_id",
       "lego_part"."notes",
       "lego_part"."is_active",
       "lego_part"."search_vector",
       "lego_part"."ldraw_part_id",
       "lego_part"."bricklink_part_id",
       "lego_part"."ignore_color_errors",
       "lego_part"."part_material_id",
       "lego_part"."is_bricklink_minifig",
       "lego_part"."is_bricklink_book",
       "lego_part"."is_bricklink_gear",
       "lego_part"."show_generic_part_msg"
  FROM
"lego_part"
 INNER JOIN
"lego_partstats"
    ON
("lego_part"."id" = "lego_partstats"."part_id")
 WHERE
("lego_part"."is_active" AND "lego_partstats"."num_sets" > 0 AND "lego_part"."part_cat_id" IN (18))
 LIMIT
1000
SELECT ••• FROM "lego_part" INNER JOIN "lego_partstats" ON ("lego_part"."id" = "lego_partstats"."part_id") WHERE ("lego_part"."is_active" AND "lego_partstats"."num_sets" > 0 AND "lego_part"."part_cat_id" IN (18)) LIMIT 1000
10.30

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(146)
  search_results = get_part_search(request, params)

/home/nathan/rb/site/./lego/views/search.py in get_part_search(179)
  results = sort_user_parts(request, results)

/home/nathan/rb/site/./lego/filters.py in sort_user_parts(1588)
  return PartSorter.sort_user_parts(user_parts, sort_by, sort_dir, prefix=prefix, group_by=group_by, group_by_db=group_by_db)

/home/nathan/rb/site/./lego/constants/parts.py in sort_user_parts(29)
  if len(parts.select_related(None).prefetch_related(None)) <= 1:

SELECT "lego_part"."id",
       "lego_part"."part_num",
       "lego_part"."name",
       "lego_part"."part_cat_id",
       "lego_part"."notes",
       "lego_part"."is_active",
       "lego_part"."search_vector",
       "lego_part"."ldraw_part_id",
       "lego_part"."bricklink_part_id",
       "lego_part"."ignore_color_errors",
       "lego_part"."part_material_id",
       "lego_part"."is_bricklink_minifig",
       "lego_part"."is_bricklink_book",
       "lego_part"."is_bricklink_gear",
       "lego_part"."show_generic_part_msg",
       "lego_partcategory"."id",
       "lego_partcategory"."name",
       "lego_partcategory"."part_count",
       "lego_partcategory"."img",
       "lego_partcategory"."slug",
       "lego_partmaterial"."id",
       "lego_partmaterial"."name",
       "lego_partoverlay"."part_id",
       "lego_partoverlay"."length",
       "lego_partstats"."part_id",
       "lego_partstats"."num_sets",
       "lego_partstats"."num_mocs",
       "lego_partstats"."num_set_parts",
       "lego_partstats"."num_moc_parts",
       "lego_partstats"."y1",
       "lego_partstats"."y2",
       "lego_partstats"."is_dirty"
  FROM
"lego_part"
 INNER JOIN
"lego_partstats"
    ON
("lego_part"."id" = "lego_partstats"."part_id")
 INNER JOIN
"lego_partcategory"
    ON
("lego_part"."part_cat_id" = "lego_partcategory"."id")
 INNER JOIN
"lego_partmaterial"
    ON
("lego_part"."part_material_id" = "lego_partmaterial"."id")
  LEFT OUTER JOIN
"lego_partoverlay"
    ON
("lego_part"."id" = "lego_partoverlay"."part_id")
 WHERE
("lego_part"."is_active" AND "lego_partstats"."num_sets" > 0 AND "lego_part"."part_cat_id" IN (18))
 LIMIT
1000
SELECT ••• FROM "lego_part" INNER JOIN "lego_partstats" ON ("lego_part"."id" = "lego_partstats"."part_id") INNER JOIN "lego_partcategory" ON ("lego_part"."part_cat_id" = "lego_partcategory"."id") INNER JOIN "lego_partmaterial" ON ("lego_part"."part_material_id" = "lego_partmaterial"."id") LEFT OUTER JOIN "lego_partoverlay" ON ("lego_part"."id" = "lego_partoverlay"."part_id") WHERE ("lego_part"."is_active" AND "lego_partstats"."num_sets" > 0 AND "lego_part"."part_cat_id" IN (18)) LIMIT 1000
1.93

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(146)
  search_results = get_part_search(request, params)

/home/nathan/rb/site/./lego/views/search.py in get_part_search(179)
  results = sort_user_parts(request, results)

/home/nathan/rb/site/./lego/filters.py in sort_user_parts(1588)
  return PartSorter.sort_user_parts(user_parts, sort_by, sort_dir, prefix=prefix, group_by=group_by, group_by_db=group_by_db)

/home/nathan/rb/site/./lego/constants/parts.py in sort_user_parts(53)
  return sorted(parts, key=lambda x: x.sort_by_part_color(group_by=group_by), reverse=reverse)

SELECT "lego_element"."id",
       "lego_element"."part_id",
       "lego_element"."color_id",
       "lego_element"."element_id",
       "lego_element"."design_id",
       "lego_element"."descr",
       "lego_element"."color_descr",
       "lego_element"."last_download_attempt",
       "lego_element"."num_download_attempts",
       "lego_element"."is_export_id",
       "lego_element"."is_active"
  FROM
"lego_element"
 INNER JOIN
"lego_color"
    ON
("lego_element"."color_id" = "lego_color"."id")
 WHERE
("lego_element"."is_active" AND "lego_element"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431))
 ORDER BY
"lego_color"."name" ASC, "lego_element"."element_id" ASC
SELECT ••• FROM "lego_element" INNER JOIN "lego_color" ON ("lego_element"."color_id" = "lego_color"."id") WHERE ("lego_element"."is_active" AND "lego_element"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431)) ORDER BY "lego_color"."name" ASC, "lego_element"."element_id" ASC
2.75

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(202)
  prefetch_related_objects(search_results, *Part.pr)

SELECT "lego_partcolorstats"."id",
       "lego_partcolorstats"."part_id",
       "lego_partcolorstats"."color_id",
       "lego_partcolorstats"."num_sets",
       "lego_partcolorstats"."num_mocs",
       "lego_partcolorstats"."num_set_parts",
       "lego_partcolorstats"."num_moc_parts",
       "lego_partcolorstats"."y1",
       "lego_partcolorstats"."y2",
       "lego_partcolorstats"."is_dirty",
       "lego_partcolorstats"."ignore_color_errors"
  FROM
"lego_partcolorstats"
 WHERE
"lego_partcolorstats"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431)
SELECT ••• FROM "lego_partcolorstats" WHERE "lego_partcolorstats"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431)
2.80

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(202)
  prefetch_related_objects(search_results, *Part.pr)

SELECT "lego_partcost"."id",
       "lego_partcost"."part_id",
       "lego_partcost"."color_id",
       "lego_partcost"."is_used",
       "lego_partcost"."cost_avg",
       "lego_partcost"."cost_min",
       "lego_partcost"."cost_max",
       "lego_partcost"."cost_count"
  FROM
"lego_partcost"
 WHERE
"lego_partcost"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431)
SELECT ••• FROM "lego_partcost" WHERE "lego_partcost"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431)
2.59

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(202)
  prefetch_related_objects(search_results, *Part.pr)

SELECT "lego_partphoto"."id",
       "lego_partphoto"."part_id",
       "lego_partphoto"."color_id",
       "lego_partphoto"."submitted_by_id",
       "lego_partphoto"."image",
       "lego_partphoto"."timestamp",
       "lego_partphoto"."is_active",
       "lego_partphoto"."is_primary"
  FROM
"lego_partphoto"
 WHERE
("lego_partphoto"."is_active" AND "lego_partphoto"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431))
SELECT ••• FROM "lego_partphoto" WHERE ("lego_partphoto"."is_active" AND "lego_partphoto"."part_id" IN (22608, 23093, 14552, 21415, 5705, 6362, 20761, 18097, 18085, 24490, 7232, 14505, 23972, 18320, 4733, 16436, 55327, 16506, 7951, 31884, 41121, 22217, 20956, 19643, 68646, 10468, 13111, 16744, 11452, 46397, 17877, 19861, 7842, 23978, 41108, 24012, 41160, 23707, 41164, 7839, 10477, 826, 41791, 24465, 10193, 6516, 12756, 24408, 41123, 24861, 19841, 22075, 19012, 6002, 41328, 34658, 24514, 22630, 21758, 16379, 21499, 20144, 41997, 41096, 18794, 41095, 24866, 23208, 24319, 41097, 17865, 12274, 21152, 11741, 14569, 18306, 23318, 3916, 15588, 23886, 22360, 9756, 12550, 10411, 19519, 22139, 17311, 24415, 3453, 7470, 8690, 2542, 22636, 2988, 41094, 4064, 41102, 17716, 19697, 24431))
2.09

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(202)
  prefetch_related_objects(search_results, *Part.pr)

select 0 as id,
       part_id,
       color_id
  from
lego_partcolorstats a
 where
num_set_parts = (
        select max(num_set_parts)
          from
lego_partcolorstats b
         where
a.part_id=b.part_id
           and
num_sets>0
       )
   and
num_sets>0
   and
part_id in (22608,23093,14552,21415,5705,6362,20761,18097,18085,24490,7232,14505,23972,18320,4733,16436,55327,16506,7951,31884,41121,22217,20956,19643,68646,10468,13111,16744,11452,46397,17877,19861,7842,23978,41108,24012,41160,23707,41164,7839,10477,826,41791,24465,10193,6516,12756,24408,41123,24861,19841,22075,19012,6002,41328,34658,24514,22630,21758,16379,21499,20144,41997,41096,18794,41095,24866,23208,24319,41097,17865,12274,21152,11741,14569,18306,23318,3916,15588,23886,22360,9756,12550,10411,19519,22139,17311,24415,3453,7470,8690,2542,22636,2988,41094,4064,41102,17716,19697,24431)
select 0 as id, part_id, color_id from lego_partcolorstats a where num_set_parts = (select max(num_set_parts) from lego_partcolorstats b where a.part_id=b.part_id and num_sets>0) and num_sets>0 and part_id in (22608,23093,14552,21415,5705,6362,20761,18097,18085,24490,7232,14505,23972,18320,4733,16436,55327,16506,7951,31884,41121,22217,20956,19643,68646,10468,13111,16744,11452,46397,17877,19861,7842,23978,41108,24012,41160,23707,41164,7839,10477,826,41791,24465,10193,6516,12756,24408,41123,24861,19841,22075,19012,6002,41328,34658,24514,22630,21758,16379,21499,20144,41997,41096,18794,41095,24866,23208,24319,41097,17865,12274,21152,11741,14569,18306,23318,3916,15588,23886,22360,9756,12550,10411,19519,22139,17311,24415,3453,7470,8690,2542,22636,2988,41094,4064,41102,17716,19697,24431)
7.31

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(207)
  Part.attach_most_common_color_to_parts(search_results)

/home/nathan/rb/site/./lego/models/parts.py in attach_most_common_color_to_parts(341)
  pcs_map = {p.part_id:p.color_id for p in pcs}

SELECT "lego_color"."id",
       "lego_color"."name",
       "lego_color"."rgb",
       "lego_color"."is_trans",
       "lego_color"."fuzzy_color_id",
       "lego_color"."is_active"
  FROM
"lego_color"
 WHERE
"lego_color"."is_active"
 ORDER BY
"lego_color"."name" ASC
SELECT ••• FROM "lego_color" WHERE "lego_color"."is_active" ORDER BY "lego_color"."name" ASC
0.51

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(330)
  context['adv_form'] = AdvancedSearchPartsForm(params.copy(), user=request.user)

/home/nathan/rb/site/./lego/forms/parts.py in __init__(672)
  self.fields['exists_in_color'].choices = Color.get_color_options(True)

/home/nathan/rb/site/./lego/models/colors.py in get_color_options(110)
  for color in colors:

SELECT "countries_plus_country"."iso",
       "countries_plus_country"."iso3",
       "countries_plus_country"."iso_numeric",
       "countries_plus_country"."fips",
       "countries_plus_country"."name",
       "countries_plus_country"."capital",
       "countries_plus_country"."area",
       "countries_plus_country"."population",
       "countries_plus_country"."continent",
       "countries_plus_country"."tld",
       "countries_plus_country"."currency_code",
       "countries_plus_country"."currency_symbol",
       "countries_plus_country"."currency_name",
       "countries_plus_country"."phone",
       "countries_plus_country"."postal_code_format",
       "countries_plus_country"."postal_code_regex",
       "countries_plus_country"."languages",
       "countries_plus_country"."geonameid",
       "countries_plus_country"."neighbours",
       "countries_plus_country"."equivalent_fips_code"
  FROM
"countries_plus_country"
 WHERE
"countries_plus_country"."iso" = 'US'
 LIMIT
21
SELECT ••• FROM "countries_plus_country" WHERE "countries_plus_country"."iso" = 'US' LIMIT 21
0.24

Connection: default

Transaction status: Idle

/home/nathan/rb/site/./lego/views/parts.py in find_parts(333)
  return render(request, 'parts/find_parts.html', context)

/home/nathan/rb/site/./rb/templatetags/rb_geo.py in geo_currency(20)
  geo_data = user.geo.get_user_currency()

/home/nathan/rb/site/./geo/geo.py in get_user_currency(252)
  country = Country.objects.get(iso=country_code)

412 </a>
413 </li>
414 <li class="hidden-xs">
415 {% geo_currency request.user %}
416 </li>
417 {% comment %}
418 <li class="hidden-xs hidden-sm">
419 <a href={% if request.user.is_authenticated %}"{% url 'user_profile_settings' request.user.get_username %}#personalisation"{% else %}"#" onclick="return false;"{% endif %} title="All date/times are being converted to this timezone">{% get_user_timezone request.user %}</a>

/home/nathan/rb/site/rb/templates/rb/base_root.html

Log messages

No messages logged.