Sindbad~EG File Manager

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

{% extends "users/layout.html" %} {% block title %}{{data.abs_type or ''}}{% endblock %} {% block content %}
<div class="container Course">
    <h1 class="h1_v1">View Paper Presentation {{data.abs_type or '' }}{{data.abs_no or '' }}</h1>
</div>
<div class="container">
    <!-- step 1 -->
    <div class="row">
        <div class="col-lg-6 col-md-6 col-sm-12 form-group">
            <div class="font-weight-bold">Chief Author Membership Number:</div>
            <div>{{data.membership_no or 'Non Member'}}</div>
        </div>

        <div class="col-lg-6 col-md-6 col-sm-12 form-group">
            <div class="font-weight-bold">Chief Author Name:</div>
            <div>{{data.full_name or ''}}</div>
        </div>
    </div>

    <div class="row">
        <div class="col form-group">
            <label class="font-weight-bold">Presenting Author:</label>
            <div class="table-responsive mobile-responsive">
                <table class="table table-bordered">
                    <thead>
                        <th scope="col">Membership No</th>
                        <th scope="col">Author Name</th>
                        <th scope="col">Email</th>
                        <th scope="col">Mobile</th>
                    </thead>
                    <tbody>
                        {% if data2 %}
                        <tr>
                            <td data-label="Membership no">{{data2.membership_no or 'Non Member' }}</td>
                            <td data-label="Author Name">{{data2.full_name or '' }}</td>
                            <td data-label="Email">{{data2.email or '' }}</td>
                            <td data-label="Mobile">{{data2.mobile or '' }}</td>
                        </tr>
                        {% endif %}
                    </tbody>
                </table>
            </div>
        </div>
    </div>
    <div class="row">
        <!-- <div class="col-lg-4 col-md-4 col-sm-12 form-group">
            <div class="font-weight-bold">Category:</div>
            <div>{{data.display_name or '' }}</div>
        </div> -->
        <div class="col-lg-4 col-md-4 col-sm-12 form-group">
            <div class="font-weight-bold">Type of Presentation:</div>
            <div>{{data.type or '' }}</div>
        </div>
        <!-- <div class="col-lg-4 col-md-4 col-sm-12 form-group">
            <div class="font-weight-bold">Time duration:</div>
            <div>{% if data.presentation_type_id == 15 %}5 minutes presentation + 2 minutes discussion {% else %} 8 minutes presentation + 2 minutes discussion {% endif %}</div>
        </div> -->
    </div>

    <!-- end step 1 -->
    <!-- step 2 -->
    <div class="row tiles">
        <div class="col form-group">
            <label class=""><b>Title of the Paper:</b> </label>
        </div>
    </div>
    <div class="row">
        <div class="col form-group">
            <textarea name="title" id="title" disabled class="form-control" placeholder="Title of paper" value="">{{data.title or ''}}</textarea>
        </div>
    </div>
    <br />
    <div class="row">
        <div class="col form-group">
            <label><b>Abstract:</b></label>
            <span id="chars1" style="color: blue;"></span>
        </div>
    </div>
    <div class="row">
        <div class="col form-group">
            <textarea name="case_report" id="case_report" disabled class="form-control" cols="50" rows="5" placeholder="Abstract" value="">{{data.synopsis or ''}}</textarea>
        </div>
    </div>
    <!-- end step2 -->
    <!-- step 3 -->
    <div class="font-weight-bold form-group">Following are the Co-Authors you have selected :</div>
    {% if data1 %}
    <div class="table-responsive py-5 mobile-responsive">
        <table class="table table-bordered" id="save_table1">
            <thead>
                <th scope="col" class="text-center">Order NO</th>
                <th scope="col" class="text-center">Membership no</th>
                <th scope="col" class="text-center">Author Name</th>
                <th scope="col" class="text-center">Email</th>
                <th scope="col" class="text-center">mobile</th>
            </thead>
            <tbody>
                {% for i in data1 %}
                <tr>
                    <td data-label="ORDER NO">{{loop.index}}</td>
                    <td data-label="Membership no">{{i.membership_no or 'Non Member'}}</td>
                    <td data-label="Author Name">{{i.full_name or ''}}</td>
                    <td data-label="Email">{{i.email or ''}}</td>
                    <td data-label="Mobile">{{i.mobile or ''}}</td>
                </tr>
                {% endfor %}
            </tbody>
        </table>
    </div>
    {% else %}
    <div>No Co-Author selected</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>
<!-- MODAL FOR DEMO-->
<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