Skip to content

Instantly share code, notes, and snippets.

@selahlynch
Created November 18, 2013 22:25
Show Gist options
  • Save selahlynch/7536483 to your computer and use it in GitHub Desktop.
Save selahlynch/7536483 to your computer and use it in GitHub Desktop.
instructor gameManagment view
<w-accordion>
<w-accordion-group ng-repeat="(founder, founderData) in founders" is-open="$first">
<w-accordion-heading>
<div class="pull-right">
<span class="label label-success">{{founderData.counts.investment}} Investor(s)</span>
<span class="label label-success">{{founderData.counts.hire}} Employee(s)</span>
</div>
<img ng-src="{{founderData.roleDesc.avatar}}"> {{founder}}
</w-accordion-heading>
<div class="row">
<div class="col-md-6">
<decision-maker decision-type="investment" founder-name="founder" roles="investors" run-id="runId" decisions-data="founderData.investments" tweets-enabled="false"></decision-maker>
</div>
<div class="col-md-6">
<decision-maker decision-type="hire" founder-name="founder" roles="employees" run-id="runId" decisions-data="founderData.hires" tweets-enabled="false"></decision-maker>
</div>
</div>
</w-accordion-group>
</w-accordion>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment