Created
August 1, 2016 21:27
-
-
Save benewen96/9d89ef6c144eccbcbc9d849762733e50 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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