<% _.each(states, function(st) { %>
<% if (!st.value.todos) { return; } %>
<%= st.value.todos.length %>
<%- st.key %>
<% _.each(st.value.todos, function(todo) { %>
<% var color = st.colors[todo.type]; %>
-
<%= todo.type %>
<%- todo.text %>
<% }); %>
<% }); %>