Skip to content

Instantly share code, notes, and snippets.

@benewen96
Created August 1, 2016 21:27
Show Gist options
  • Save benewen96/9d89ef6c144eccbcbc9d849762733e50 to your computer and use it in GitHub Desktop.
Save benewen96/9d89ef6c144eccbcbc9d849762733e50 to your computer and use it in GitHub Desktop.
<apex:page standardController="Backlog__c" sidebar="false"
recordSetVar="items" showheader="false" standardStylesheets="false"
docType="html-5.0">
<!-- Snippet 3 / Add header -->
<head>
<title>Lunch and Learn</title>
</head>
<body> <!-- Snippet 3 / Add body -->
<table id="backitemTable" class="display card-panel white">
<thead>
<tr>
<th>Idea Name</th>
<th>Description</th>
<th>Points</th>
</tr>
</thead>
<tbody>
<apex:repeat value="{!items}" id="backItemsRepeat" var="i">
<tr>
<td>{!i.name}</td>
<td>{!i.Description__c}</td>
<td>{!i.Point__c}</td>
</tr>
</apex:repeat>
</tbody>
</table>
</body>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment