<div class="row">
  <div class="col-lg-12 mt-3">
    <p><a title="Main Module" href="/faq/list"><i class="fa fa-chevron-circle-left "></i> &nbsp; Zurück zur Datenliste. FAQ verwalten </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%">FAQ-Kategorietitel</td>
                  <td><%= dataInfo.faq_category_title ? dataInfo.faq_category_title : 'N/A' %></td>

                </tr>
                <tr>
                  <td width="20%">Frage</td>
                  <td><%= dataInfo.questions ? dataInfo.questions : 'N/A' %></td>
                </tr>
        
                <tr>
                  <td width="20%">Antwort</td>
                  <td><%- dataInfo.answer ? dataInfo.answer : 'N/A' %></td>

                </tr>

                
            
                <tr>
                  <td width="20%">Hergestellt in	</td>
                  <td><%= new Date(dataInfo.created_at).toLocaleDateString('en-GB') %></td>
                </tr>
              </tbody>
            </table>
          </div>
        </div>
        <!-- /.box-body -->
      </div>
    </div>
  </div>
  <!--END AUTO MARGIN-->
</div>
