Created
March 5, 2015 18:27
-
-
Save charltonAthletic/7a7bca4b177f32982696 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 controller="OpportunityRevisitDatesController" sidebar="true" showHeader="true"> | |
<apex:pageBlock > | |
<b>Hi {!$User.FirstName} - you have <u>{! opportunities.size}</u> New Business opportunities which have | |
a revisit date in the past. Please update these opportunities with a correct revisit date.</b> | |
<apex:pageBlockSection > | |
</apex:pageBlockSection> | |
<apex:pageBlockTable value="{! opportunities}" var="opps" rendered="{! opportunities.size>0}"> | |
<apex:column value="{!opps.Name}"/> | |
<apex:column value="{!opps.Account.Name}"/> | |
<apex:column value="{!opps.Revisit_Date__c}"/> | |
</apex:pageBlockTable> | |
</apex:pageBlock> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment