Created
June 7, 2024 08:53
-
-
Save pedes/bd8a3fb55d82617b848fa166b20c49ad 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="Course__c" lightningStylesheets="false"> | |
<br/> | |
<b>Hello {!$User.FirstName}</b> | |
<br/> | |
<apex:tabPanel > | |
<apex:tab label="Details"> | |
<apex:detail relatedList="false"/> | |
</apex:tab> | |
<apex:tab label="Related Lists"> | |
<apex:relatedList list="Course_Deliveries__r"/> | |
<apex:relatedList list="CombinedAttachments"/> | |
</apex:tab> | |
</apex:tabPanel> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment