Skip to content

Instantly share code, notes, and snippets.

@justinvdm
Created August 23, 2013 13:56
Show Gist options
  • Save justinvdm/6319588 to your computer and use it in GitHub Desktop.
Save justinvdm/6319588 to your computer and use it in GitHub Desktop.
diff --git a/go/base/static/templates/conversation/groups/row.jst b/go/base/static/templates/conversation/groups/row.jst
new file mode 100644
index 0000000..3487e9e
--- /dev/null
+++ b/go/base/static/templates/conversation/groups/row.jst
@@ -0,0 +1,12 @@
+<td>
+ <input
+ class="marker"
+ type="checkbox"
+ <% if (model.get('inConversation')) { %>checked<% } %>>
+</td>
+
+<td>
+ <a href="<%= model.get('urls').get('show') %>">
+ <%= model.get('name') %>
+ </a>
+</td>
@hodgestar
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment