Sindbad~EG File Manager

Current Path : /home/numerotech/public_html/livemt2023.aios-scientificcommittee.org/app/views/vt/
Upload File :
Current File : //home/numerotech/public_html/livemt2023.aios-scientificcommittee.org/app/views/vt/view.blade.php

{{-- 
 VT view.blade 
--}}

@extends('layout')

@section('title')
  <title>VT</title>
@stop


@section('scriptTop')
      
   
<script type="text/javascript">


</script>

@stop
@section('content')  


{{ Form::open(array('url' => 'vt/store','role'=>'form','id'=>'form_s4')) }}

{{ Form::hidden('hdnId', isset($vt)? $vt->abs_id : 0,array('id'=>'hdnId')) }}
{{ Form::hidden('hdnStep', '4',array('id'=>'hdnStep')) }}
{{ Form::hidden('hdnIsNext', '1',array('id'=>'hdnIsNext')) }}

@section('ContentTitle')  
View Abstract VT{{$vt->abs_no }}
@stop

<!--step 1 details  -->

<div class="row">            
    <div class="col-sm-6">               
    <div class="form-group">
          <label>Chief Author Membership Number </label>        
          <p>{{  empty($user->membership_no)? '':$user->membership_no}}</p>
    </div>
    </div>            
    <div class="col-sm-6">               
        <div class="form-group">
          <label>Chief Author Name </label>        
          <p>{{ $user->prefix }}.{{ $user->first_name }}</p>
        </div>
    </div>            
</div>

<div class="row">            
    <div class="col-sm-12">   
      <label>Presenting Author : </label> <label id="hdnPAId-error" class="error" for="hdnPAId"></label>        
      <div class="form-group">                                     
        <div class="table-responsive">             
          <table id="tbl_PA" class="table table-bordered">
            <thead>
              <tr>                         
                <th>
                  Membership No
                </th>
                <th>
                  Author Name
                </th>
                <th>
                  Email
                </th>
                <th>
                  Mobile
                </th>                                                                     
              </tr>
            </thead>
            <tbody> 
            <tr>
              <td>
                {{ $pa->membership_no }}
              </td>
              <td>
                {{ $pa->name }}
              </td>
              <td>
                {{ $pa->email }}
              </td>
              <td>
                {{ $pa->mobile }}
              </td>
            </tr> 
            </tbody>  
          </table>
        </div>
      </div>                
    </div>        
  </div>        
 
<div class="row">      
      <div class="col-sm-6">           
            <div class="form-group">    
              <label>Video film category</label>                  
              <p>{{ $categories[$vt->category_id] }}</p>   
            </div>
        </div>         
</div>

<!--End step 1 details  -->


<!--step 2 details  -->

<div class="row">            
    <div class="col-sm-12">               
    <div class="form-group">
          <label>Title of the Course </label>
          <p>{{ $vt->title }}</p>
              {{-- Form::textarea('txtTitle',$vt->title,array('class' => 'form-control', 'id' => 'txtTitle' , 'placeholder' => 'Title','rows' => 2,'disabled')) --}}
    </div>
    </div>                
</div>

<div class="row">            
        <div class="col-sm-12">           
            <div class="form-group">    
              <label>Synopsis
              <span class="reqspan">Do not mention any Institution/Hospital/Organisation names or any authors name in the text otherwise rejected automatically.</span>
              </label>                  
              <p>{{ $vt->synopsis }}</p>

                {{-- Form::textarea('txtSynopsis',$vt->synopsis,array('class' => 'form-control', 'id' => 'txtSynopsis' , 'placeholder' => 'Synopsis','disabled')) --}}   
            </div>
        </div>
</div>


<!--End step 2 details  -->
<!--step 3 details  -->


<div class="row">            
    <div class="col-sm-12">  
    @if(isset($coas) && count($coas) >0)
      <label>
        Following are the list of Co-Authors you have selected : </label>

    <div class="table-responsive">             
    <table class="table table-bordered">
      <thead>
        <tr>          
            <th>
              Membership No 
            </th>
            <th>
              Author Name
            </th>
            <th>
              Email
            </th>
            <th>
              Mobile
            </th>            
        </tr>
      </thead>
      <tbody>
      @foreach ($coas as $value)
        <tr>         
          <td data-label="Membership No">
              {{ $value->membership_no }}
          </td>
          <td data-label="Author Name">
              {{ $value->name }}
          </td>
          <td data-label="Email">
              {{ $value->email }}
          </td>
          <td data-label="Mobile">
              {{ $value->mobile }}
          </td>                
        </tr>
      @endforeach      
      </tbody>  
    </table>    
    </div>
    @else
    <label>No Co-Authors selected</label>
    @endif
    </div>                
</div>


<!--End step 3 details  -->

<div class="row">            
    <div class="col-sm-12"> 
<label> NOTE</label>
<ul class="list">
<li>Online submission will be taken as signed by the Presenting Author.</li>
<li>Clicking on submit button will submit your abstract for further evaluation. Subsequent to this it will not be possible for you to edit your abstract.</li>
<li>The video is produced by me & above co-authors only. I understand that once submitted the video becomes the property of {{ CustomClass::$Initial }} & we permit them to reprodurce and distribute the videos in any manner they deem to be neccessary.</li>
</ul>
    </div>
</div>

 <div class="row text-blue">            
    <div class="col-sm-12"> 
    
    <table class="table table-bordered">
      <tr>
        <td>
        <label>Was this research carried out within India ?  </label>       
        </td>
        <td>
        <label> {{ $vt->is_in_india ? 'Yes' : 'No'   }}</label>
        </td>
      </tr>
      <tr>
      <td>
        <label>Was this video been presented in any other conferences earlier  <br />
          OR <br />
          would it be presented in any other conferences prior to {{ CustomClass::$Title }} <br />
          OR <br />
          was it published or submitted for publication in any peer reviewed journal </label>            
      </td>
      <td>
          <label> {{ $vt->is_already_published ? 'Yes' : 'No'  }}</label>
      </td>
      </tr>      
    </table>

    </div>
</div>


<?php
                    $conferences = [];
                    if($vt->Annual ==1)
                    {   
                        array_push($conferences, DateConfig::getDateConfig('AnnualConf')->display_name);
                    }

                    if($vt->MidYear ==1)
                    {
                        array_push($conferences, DateConfig::getDateConfig('MidYearConf')->display_name);
                    }

                ?>
                @if(count($conferences)>0)
                <div class="row">   
                <div class="col-lg-12"> 
                <p>
                    <label>Abstract to be considered for the following conference(s) : </label> 
                    {{ implode("<br/>",$conferences); }}
                </p>
                </div>
                </div>
                @endif  


<div class="row margin30">  
    <div class="col-sm-6 text-left"  >  
        <a href="{{ url('/dashboard') }}" class="btn primary">Go back to Dashboard</a>  
    </div>
</div>


{{ Form::close() }}


@stop

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists