blob: 5d9ec8b322b75f2297eb9a777a54b909ad10b993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
{% extends "base.html" %}
{% load static %}
<div class="se-pre-con"></div>
{% block content %}
<section id="view_proposal" class="section view_proposal">
<div class="container">
{% if proposals_a >= 1 %} You have exceeded the abstract submission limit. You may view your submitted proposals by clicking <a href="{{ SITE_URL}}/proposal/view" class="btn btn-info" role="button"> here</a>
<!-- <h2>{{ user.get_full_name|default:user.username }} </h2> -->
{% else %}
<center>
<h1>Submit paper</h1>
</center>
<hr>
<h4 class="panel-title">
General guidelines for paper submission:
</h4>
<ul style="margin-top: 2%;">
<li>Papers are invited on chemical process, modelling, simulation, and optimization. </li>
<li>Use of open source software such as DWSIM and OpenModelica will be preferred.</li>
<li>Authors must submit the manuscript up to 6 pages of length including tables, figures and references in the required 2-column format as described in the template below.</li>
<li>Submissions will be judged on originality, significance, interest, clarity, relevance, and presentation.</li>
<li>Authors should ensure that their work doesn’t contain plagiarized content and not under copyright elsewhere.</li>
<li>Please download the appropriate file for structure of the paper. We encourage use of LaTeX for creating paper.</li>
<li>Click for <a href= "https://static.fossee.in/dwsim/nccps-templates/LaTeX-TEMPLATE.zip" target="_blank" style="color: #806600">LaTeX</a>/ <a href="https://static.fossee.in/dwsim/nccps-templates/WORD-TEMPLATE.zip" target="_blank" style="color: #806600">Word template</a></li>
</ul>
<form action="" method=POST enctype="multipart/form-data">
<div class="row1">
{% for field in proposal_form %}
<p>{{ field.label}} {% if field.field.required %} <span style="color:red;">*</span> {% endif %} {{ field }}
</p>
<a style="color:red; ">{{ field.errors }}</a> {% endfor %}
</div>
{% csrf_token %}
<center>
<button class="btn btn-info" type="submit">Submit</button>
<a href="{% url 'website:proposal' %}" class="btn btn-info" role="button">Back</a>
</center>
</form>
{% endif %}
</div>
<div class="modal fade" id="modal_terms_and_conditions" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<center>
<h1>Terms and conditions</h1>
</center>
<div class="row">
<div class="col-md-12">
<h4>Paper</h4>
<ul>
<li>The decision of the organization will be final.</li>
<li>Maximum three authors for one paper are allowed.</li>
<li>The subsidy will be given to the authors of the selected papers, to cover a part of the cost of their accommodation(for 1 night) and part of travel expenses depending on the quality of their work. This will be paid after the conference.</li>
<li>Only one author will get the above subsidy in case of a paper has multiple authors.</li>
<li>The organization reserves all rights to take a decision about this subsidy.</li>
<li>All authors must register for the conference.</li>
</ul>
<h4>Content:</h4>
<ul>
<li>The copyright for the content uploaded or shared by any means will be transferred to FOSSEE, IIT Bombay.</li>
<li>The Organization reserves the rights to release this content under Creative Commons Attribution-ShareAlike 4.0 International License in any format.</li>
</ul>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</section>
{% endblock %}
|