Custom Templates Help

I have a question for the experts.

When I click on the code paths inside PHPMaker, the template for the code appears. And when I click the Code Repository icon at the top, I see examples of code snippets.

I want to modify these codes or add my own custom templates so they appear by default. This would help me generate code faster, especially when working with many tables.

For example, there’s a default template for the View Page code. I would like to modify it so that a custom structure I created appears by default every time.

Please let me know the file path of these default templates so I can edit them as I wish, or add my own code snippets to be used alongside the existing ones.

<?xml version="1.0"?>
<ew-code name="Custom Card View" version="25.0.0" type="Custom Template" for="template" author="RCLC">
<description>
<![CDATA[
#####  (Bootstrap Card View)
]]>
</description>
<script>
<![CDATA[
<#
    let fields = FIELDS.filter(f => f.FldGenerate && f.FldView);
    let half = Math.ceil(fields.length / 2);
    let leftFields = fields.slice(0, half);
    let rightFields = fields.slice(half);
#>
]]>
</script>
<code>
<![CDATA[
<div class="card" style="max-width: 1000px; margin: 0 auto;">
    <div class="card-header">
        <h3 class="card-title">DET</h3>
    </div>
    <div class="card-body">
        <div class="row gy-3">

            <!-- LEFT -->
            <div class="col-md-6">
                <# for (let f of leftFields) {
                    if (f.FldParm !== "Ditels") { #>
                        <p><strong>{{{caption <#= f.FldParm #>}}}:</strong> {{{value <#= f.FldParm #>}}}</p>
                <# } } #>
            </div>

            <!-- RIGHT -->
            <div class="col-md-6">
                <# for (let f of rightFields) {
                    if (f.FldParm !== "Ditels") { #>
                        <p><strong>{{{caption <#= f.FldParm #>}}}:</strong> {{{value <#= f.FldParm #>}}}</p>
                <# } } #>
            </div>

            <!-- DETELS Fields If You Need it -->
            <# for (let f of fields) {
                if (f.FldParm === "Ditels") { #>
                    <div class="col-md-12">
                        <p><strong>{{{caption <#= f.FldParm #>}}}:</strong></p>
                        <div style="max-height: 150px; overflow-y: auto; background: #f9f9f9; padding: 10px; border-radius: 8px; border: 1px solid #ddd;">
                            {{{value <#= f.FldParm #>}}}
                        </div>
                    </div>
            <# } } #>

        </div>
    </div>
</div>
]]>
</code>
</ew-code>

The .xml files are located under this following folder:
C:\Users\{User}\AppData\Roaming\phpmaker2025\code

Thank youuuuuuuuuuuuuuuuuu