Bar chart for issue 93

Owned by simonw, visibility: Public

SQL query
select "tag" as bar_label, count(*) as bar_quantity from (
  select * from blog_entry_tags
  join blog_tag on blog_tag.id = blog_entry_tags.tag_id
) as results
group by "tag" order by bar_quantity desc