HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/vebon.komma.pro/storage/framework/views/4c1e0e1e66ffada50716488cf11b45fe
<?php $__env->startSection('title'); ?><?php echo app('translator')->get('title.audit_admin'); ?> |<?php $__env->stopSection(); ?>

<?php /*Build the top bar actions */ ?>
<?php if($audit->status == $audit::$judged): ?>
    <?php /*Create the section before the include*/ ?>
<?php $__env->startSection('actions'); ?>
    <?php echo Form::button(Lang::get('audit.save'),['name'=> 'save', 'class'=> 'btn btn-save', 'ng-click'=>'popup("saveForAuditor", $event)']); ?>

    <?php echo Form::submit(Lang::get('audit.sent_back'), ['name'=> 'reject', 'id'=> 'reject','class'=> 'btn btn-archive','ng-click'=>'popup("reject", $event)']); ?>

    <?php echo Form::submit(Lang::get('audit.approve'), ['name'=> 'approve','id' => 'approve', 'class'=> 'btn btn-send', 'ng-click'=>'popup("approve", $event)']); ?>

<?php $__env->stopSection(); ?>
<?php endif; ?>

<?php /*end of topbar*/ ?>

<?php $__env->startSection('body'); ?>
    <div ng-controller="auditController">
        <?php echo Form::open(['files'=> true]); ?>


        <?php echo Form::hidden('reference', 'auditor'); ?>


        <?php /*Include the topBar*/ ?>
        <?php echo $__env->make('partials.topBar',['overView'=> true], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

        <div class="content-container">
            <div class="header">
                <div class="header-wrapper">

                    <div class="header-information">
                        <h1><?php echo app('translator')->get('audit.auditorPortal'); ?></h1>
                    </div>

                    <div class="auditor linked-user">
                        <h4><?php echo app('translator')->get('audit.organisation'); ?></h4>
                        <div class="user-details">
                            <div class="profile-image"><img src="/images/icons/profile.svg"/></div>
                            <div class="profile-data">
                                <p><?php echo e($audit->member->company); ?></p>
                                <p><?php echo e($audit->member->first_name); ?> <?php echo e($audit->member->name_insertion); ?> <?php echo e($audit->member->last_name); ?></p>
                                <p>
                                    <?php echo HTML::link('mailto:'.$audit->member->email, $audit->member->email); ?>

                                </p>

                                <p>
                                    <?php echo HTML::link('tel:'.$audit->member->telephone, $audit->member->telephone); ?>

                                </p>
                            </div>
                        </div>
                    </div>

                </div>

                <div class="header-bottom-wrapper">
                    <div class="status-audit">
                        <?php if($audit->status == $audit::$open): ?>
                            <div class="status-audit-color"> <?php echo app('translator')->get('audit.withMember'); ?></div>
                        <?php elseif($audit->status == $audit::$closed): ?>
                            <div class="status-audit-color"> <?php echo app('translator')->get('audit.closed'); ?></div>
                        <?php elseif($audit->status == $audit::$reviewedInPractice): ?>
                            <div class="status-audit-color"> <?php echo app('translator')->get('audit.reviewedInPractice_archive'); ?></div>
                        <?php endif; ?>
                    </div>
                    <div class="extra-button">
                        <?php echo HTML::linkRoute('download', Lang::get('audit.download-all'), ['type'=> 'audit', 'id'=> $audit->id], array('class'=>'btn btn-download-all')); ?>

                        <?php echo Form::submit(Lang::get('audit.practice'), ['name'=> 'practice','id' => 'practice', 'class'=> 'btn btn-reviewed-in-practice', 'ng-click'=>'popup("practice", $event)']); ?>

                    </div>
                </div>

            </div>

            <div>
                <ol>
                    <?php foreach($audit->documentGroups as $documentGroup): ?>
                        <?php echo $__env->make('audit.auditor.documentGroup', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                    <?php endforeach; ?>
                </ol>
            </div>

            <?php echo Form::close(); ?>


        </div>
    </div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>