Sindbad~EG File Manager

Current Path : /home/numerotech/test-abs.numerotech.com/common_abs_v2/core/templates/users/DEMO24/PGT/
Upload File :
Current File : //home/numerotech/test-abs.numerotech.com/common_abs_v2/core/templates/users/DEMO24/PGT/view.html

{% extends "users/layout.html" %} {% block title %}{{data.abs_type or ''}}{% endblock %} {% block content %}
 <div class="container Course">
            <h3 class="h1_v1" style="color: #00166B;">{{ Auth.get_conference(conf_id).get('conf_name') or '' }} PG Thesis Competition Abstract Submission Form</h3>
        </div>
<div class="container bg-white p-4">
    <h3 class="text-center text-danger  font-weight-bold">View Abstract {{data.abs_type or ''}}{{data.abs_no or ''}}</h3>
    <!-- step 1 -->
    <div class="row mt-4">
        <div class="col-lg-6 col-md-6 col-sm-12 form-group">
            <label class="font-weight-bold">Applicant Membership Number</label>
            <div>{{data.membership_no or 'Non-Member'}}</div>
        </div>
        <div class="col-lg-6 col-md-6 col-sm-12 form-group">
            <label class="font-weight-bold">Applicant Name</label>
            <div>{{data.full_name or ''}}</div>
        </div>
    </div>
    <div class="row">
        <div class="col form-group">
        
       <div class="table-responsive  mobile-responsive">
           
       </div>
   </div>
</div>
<div class="row">
    <div class="col">
<div class="row">
        <div class="col-lg-6 col-md-6 col-sm-12 form-group">
            <label class="font-weight-bold">Section</label>
            <div>{{data.display_name or ''}}</div>
        </div>
    </div>
</div>
<div class="col">
<div class="row">
        <!--<div class="col-lg-6 col-md-6 col-sm-12 form-group">-->
        <!--    <label class="font-weight-bold">Type of Presentation</label>-->
        <!--    <div>{{data.type or ''}}</div>-->
        <!--</div>-->
    </div>
</div>
</div>
<div class="row">
                <div class="col-lg-6 col-md-6 col-sm-12 form-group">
                    <label class="font-weight-bold">Name of Institution</label>
                    <div>{{data.institution or ''}}</div>
                </div>
                <hr />
                <div class="col-lg-6 col-md-6 col-sm-12 form-group">
                    <label class="font-weight-bold">Name of University</label>
                    <div>{{data.university or ''}}</div>
                </div>
            </div>
            <div class="row">
                <div class="col-lg-6 col-md-6 col-sm-12 form-group">
                    <label class="font-weight-bold">MCI State</label>
                    <div>{{data.mc_state or ''}}</div>
                </div>
                <hr />
                <div class="col-lg-6 col-md-6 col-sm-12 form-group">
                    <label class="font-weight-bold">Year of Passing</label>
                    <div>{{data.year_of_passing or ''}}</div>
                </div>
            </div>
            <div class="row">
                <div class="col-lg-6 col-md-6 col-sm-12 form-group">
                    <label class="font-weight-bold">Name of Guide</label>
                    <div>{{data.guide_name or ''}}</div>
                </div>
                <hr />
                <div class="col-lg-6 col-md-6 col-sm-12 form-group">
                    <label class="font-weight-bold">Name of Co-Guide</label>
                    <div>{{data.co_guide_name or ''}}</div>
                </div>
            </div>
            <div class="row">
                <div class="col-lg-6 col-md-6 col-sm-12 form-group">
                    <label class="font-weight-bold">Name of HOD</label>
                    <div>{{data.hod_name or ''}}</div>
                </div>
            </div>
    <!-- end step 1 -->
    <!-- step 2 -->
                <div class="row ">
                    <div class="col form-group">
                    <label class=""><b>Title</b> </label>
                    <span id="chars" style="color: blue;"></span>
                </div>
                </div>
                <div class="row">
                    <div class="col form-group">
                    <textarea name="title" id="title" class="form-control" placeholder="Title of paper" disabled  value="">{{data.title or ''}}</textarea>
                </div>
                </div>
                <br />
                <div class="row">
                    <div class="col form-group">
                        <label><b>Abstracts</b></label>
                    </div>
                </div>
                <div class="row">
                    <div class="col form-group">
                        <textarea name="purpose" id="purpose" class="form-control" cols="50" rows="5" disabled >{{data.synopsis or ''}}</textarea>
                    </div>
                </div>
                {% if img.path and img.file_name %}
                <div class="row">
                    <div class="col form-group">
                        <label class="font-weight-bold">Proof</label><br>
                        <img src="{{ img.path or '' }}{{ img.file_name }}" width="300px" id="uploaded_img" />
                    </div>
                </div>
                {% endif %}
            
<!-- end step2 -->
<!-- step 3 -->
        {% if data1 %} 
        <label class="font-weight-bold">Following are the list Co-Author(s) you have selected :</label>
        <div class=" table-responsive py-2 mobile-responsive" >
            <table class="table table-bordered" id="save_table1">
                <thead class="text-center thead-dark">
                    <!-- <th scope="col" class="text-center">ORDER NO</th> -->
                    <th scope="col">MEMBERSHIP NO</th>
                    <th scope="col">AUTHOR NAME</th>
                    <th scope="col">EMAIL</th>
                    <th scope="col">MOBILE</th>
                </thead>
                <tbody>
                {% for i in data1 %}
                    <tr>
                        <!-- <td data-label="ORDER NO" class="text-lg-center">{{loop.index}}</td> -->
                        <td data-label="MEMBERSHIP NO" class="text-lg-center">{{i.membership_no or 'Non-Member'}}</td>
                        <td data-label="AUTHOR NAME" class="text-lg-center">{{i.full_name or ''}}</td>
                        <td data-label="EMAIL" class="text-lg-center">{{i.email or ''}}</td>
                        <td data-label="MOBILE" class="text-lg-center">{{i.mobile or ''}}</td>
                </tr>
                    {% endfor %} 
                </tbody>
            </table>
        </div> 
        {% endif %}
          <br />
        <div class="row">
         <div class="col">
        <a href="{{url_for('main.AbstractsIndex',abs_type=data.abs_type,conf_id=conf_id,conf_key=conf_key)}}" class="btn btn-primary">GO BACK TO ABSTRACT HOME</a>
    </div>
    </div>
        </div>

    </form>

<input type="hidden" name="user_id" id="user_id" value="{{data.user_id}}">
<input type="hidden" name="abs_id" id="abs_id" value="{{data.abs_id}}">
<!-- end step3 -->
{% endblock %}
{% block script %}
<script type="text/javascript">
  $(document).ready(function() {

    $("#award_rules").hide();
    is_award_is({{data.is_award or ''}});
});
         function is_award_is(award){
            var award = award
            // console.log(award)
            if (award == '1') {
        $("#award_rules").show();
    }
    else{
      $("#award_rules").hide();
    }
         }
</script>
{% endblock %} 

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