<div class="row">
  <div class="col-lg-12 mt-3">
    <p><a title="Main Module" href="/email-setting/list"><i class="fa fa-chevron-circle-left "></i> &nbsp; Zurück zur Liste der Daten E-Mail-Vorlagen</a></p>

    <div class="card card-info mt-3">
      <div class="card-header  align-items-center d-flex">
        <h4 class="card-title mb-0 flex-grow-1">   <%=sectionTitle%></h4>
        <div class="flex-shrink-0"></div>
      </div>
      <div class="card-body">
        <div class="row g-3">
          <div class="table-responsive">
            <table id="table-detail" class="table table-striped">
              <tbody>
                <tr>
                  <td width="20%">Name</td>
                  <td><%= dataInfo.name ? dataInfo.name : 'N/A' %></td>

                </tr>
                <tr>
                  <td width="20%">Schnecke</td>
                  <td><%= dataInfo.slug ? dataInfo.slug : 'N/A' %></td>

                </tr>
                <tr>
                  <td width="20%">Thema</td>
                  <td><%= dataInfo.subject %></td>
                </tr>
             
                <tr>
                  <td width="20%">Inhalt</td>
                  <td><%- dataInfo.content ? dataInfo.content : 'N/A' %></td>
                </tr>
                <tr>
                  <td width="20%">Beschreibung</td>
                  <td><%- dataInfo.description  ? dataInfo.description : 'N/A' %></td>
                </tr>

                <tr>
                  <td width="20%">Aus der Email</td>
                  <td><%- dataInfo.from_email ? dataInfo.from_email : 'N/A' %></td>
                </tr>

                <tr>
                  <td width="20%">Von Namen</td>
                  <td><%- dataInfo.from_name ? dataInfo.from_name : 'N/A' %></td>
                </tr>

                <tr>
                  <td width="20%">CC-E-Mail	</td>
                  <td><%- dataInfo.cc_email  ? dataInfo.cc_email : 'N/A' %></td>
                </tr>

              
              </tbody>
            </table>
          </div>
        </div>
        <!-- /.box-body -->
      </div>
    </div>
  </div>
  <!--END AUTO MARGIN-->
</div>
