Don't forget to clock in and out each day!

ADP

Make sure you are developing in the correct environment!

Power Pages

Components

Rich Text Editor
Must be enabled on Power Pages by clicking Edit code component and then Enable custom component.

Backend

_DataVerse

Tables

Application: Graham
?
Opportunity: Graham cr34c_opportunity
cr34c_active, cr34c_name, cr34c_description, cr34c_contactemail, cr34c_applylink, cr34c_location

Liquid

Use the logical name, prefixed with cr34c_ for accessing data!

Code Snippets

Button to a Page

<a href="/OpportunityApply?id={{ opportunityId }}" class="btn button1">Button</a>

{% assign opportunityId = request.params.id %}

{% if opportunityId %}

    {% assign opportunity = entities['cr34c_opportunity'][opportunityId] %}

    {% if opportunity %}

        <div class="opportunity-details">

            <div class="opportunity-header">
                <h1>{{ opportunity.cr34c_name }}</h1>
            </div>

            <div class="opportunity-card">

                <div class="detail-row">
                    <div class="detail-label">Description</div>
                    <div class="detail-value">
                        {{ opportunity.cr34c_description | default: 'No description provided.' }}
                    </div>
                </div>

                <div class="detail-row">
                    <div class="detail-label">Location</div>
                    <div class="detail-value">
                        {{ opportunity.cr34c_location | default: 'No location provided.' }}
                    </div>
                </div>

            </div>

        </div>

    {% else %}

        <div class="alert alert-danger">
            Opportunity not found.
        </div>

    {% endif %}

{% else %}

    <div class="alert alert-warning">
        No opportunity was specified.
    </div>

{% endif %}

Publishing

Solutions