Sindbad~EG File Manager
{% extends "users/layout.html" %}
{% block title %}{{data.abs_type}}{% endblock %}
{% block content %}
<div>
<div class="container Course">
<h3 style="color: #00166B;">{{ Auth.get_conference(conf_id).get('conf_name') or '' }} Video Abstract Submission Form</h3>
</div>
<div class="container card bg-white p-4">
<h4 class="text-center font-weight-bold text-danger mb-2">VIEW ABSTRACT {{data.abs_type}}{{data.abs_no}}</h4>
<!-- step 1 -->
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<label class="font-weight-bold">Chief Author 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">Chief Author Name</label>
<div>{{data.full_name}}</div>
</div>
</div>
<label><b>Presenting Author</b></label>
<div class="row">
<div class="col table-responsive mobile-responsive">
<table class="table table-bordered">
<thead class="text-center thead-dark">
<th scope="col">MEMBERSHIP NO</th>
<th scope="col">AUTHOR NAME</th>
<th scope="col">EMAIL</th>
<th scope="col">MOBILE</th>
</thead>
<tbody class="text-center">
{% 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 class="row">
<div class="col-lg-6 col-md-6 col-sm-12 form-group">
<label class="font-weight-bold">Video Film Category</label>
<div>{{data.display_name or ''}}</div>
</div>
</div>
<!-- end step 1 -->
<!-- step 2 -->
<div class="row">
<div class="col form-group">
<label class="font-weight-bold">Title of the Video </label>
<span id="chars" style="color: blue;"></span>
<textarea name="title" id="title" class="form-control" disabled placeholder="Enter the title" value="">{{data.title or ''}}</textarea>
</div>
</div>
<div class="row">
<div class="col form-group">
<label class="font-weight-bold">Synopsis</label>
<span id="chars1" style="color: blue;"></span>
<textarea name="Synopsis" id="Synopsis" class="form-control" disabled cols="50" rows="5" placeholder="Enter Synopsis" value="">{{data.synopsis or ''}}</textarea>
</div>
</div>
<!-- <div class="row">
<div class="col">
<label class="font-weight-bold">Brief "RESUME" of the Chief Author (not to reveal the identity) </label>
<span id="chars2" style="color: blue;"></span>
</div>
</div> -->
<!-- <div class="row">
<div class="col">
<textarea name="resume" id="resume" class="form-control" cols="50" disabled rows="7" placeholder="Enter the Resume" value="">{{data.resume}}</textarea>
</div>
</div>
-->
<!-- end step 2-->
<!-- step 3-->
{% if data1 %}
<div class="row">
<div class="col">
<label class="font-weight-bold">
Following are the list of Co-Author(s) you have selected :
</label>
<div class="table-responsive mobile-responsive">
<table class="table table-bordered" id="save_table1">
<thead class="text-center" style="background-color:#484747;color: white;">
<th scope="col">MEMBERSHIP NO</th>
<th scope="col">AUTHOR NAME</th>
<th scope="col">EMAIL</th>
<th scope="col">MOBILE</th>
</thead>
<tbody class="text-center">
{% for i in data1 %}
<tr>
<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>
</div>
</div>
{% endif %}
<!-- end step 3-->
<!-- step4 -->
<!-- <div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<table class="table table-bordered" style="text-align: center;">
<tr>
<td>
Was this research carried out within India ?*<br />
<label id="in_India-error" class="error" for="in_India"></label>
</td>
<td><label>{% if data.is_in_india == 1 %}YES {% elif data.is_in_india == 0 %} NO{% endif %}</label></td>
</tr>
<tr>
<td>
Was this submission been presented in any other conferences earlier<br />
OR<br />
would it be presented in any other conferences prior to TNOA 2022<br />
OR<br />
was it published or submitted for publication in any peer reviewed journal *<br />
<label id="is_already_published-error" class="error" for="is_already_published"></label>
</td>
<td><label>{% if data.is_already_published == 1 %}YES {% elif data.is_already_published == 0 %} NO{% endif %} </label><br /></td>
</tr>
</table>
</div>
</div> -->
<!-- end step4 -- -->
<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>
</div>
{% endblock %}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists