meteor/meteor

View on GitHub
packages/facts-ui/facts_ui.html

Summary

Maintainability
Test Coverage
<template name='serverFacts'>
  <ul>
    {{#each factsByPackage}}
      <li>{{ _id }}
        <dl>
          {{#each facts}}
            <dt>{{ name }}</dt>
            <dd>{{ value }}</dd>
          {{/each}}
        </dl>
      </li>
    {{/each}}
  </ul>
</template>