Skip to content

Instantly share code, notes, and snippets.

@michaltakac
Created October 16, 2015 23:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michaltakac/066546407518a3d06faf to your computer and use it in GitHub Desktop.
Save michaltakac/066546407518a3d06faf to your computer and use it in GitHub Desktop.
Braintree demo - dashboard.html (v2)
<template name="dashboard">
<div class="template-dashboard">
<div class="page-header">
<h1>Dashboard</h1>
</div>
{{#if showForm}}
<h3>Buy access to our list of items!</h3>
<form role="form">
<div class="row">
<div class="col-md-6 col-xs-12">
<div id="payment-form"></div>
<button type="submit" class="btn btn-success">Submit</button>
</div>
</div>
</form>
{{/if}}
<ul class="list-group">
{{#each items}}
<li class="list-group-item">{{ name }} <span class="label label-default">{{ rating }}</span></li>
{{/each}}
</ul>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment