dropdown.jade 324 B

123456789101112131415
  1. ul.dropdown
  2. li
  3. | #{ note.name }
  4. ul
  5. - each otherNote in otherNotes
  6. li
  7. div( note-id = otherNote._id )
  8. a( href = '/note/#{ otherNote._id }' ) #{ otherNote.name }
  9. span.count( note-id = otherNote._id )
  10. div.clear
  11. li
  12. div
  13. a( href = '/lecture/#{ lecture._id }/notes/new' ) + New Note