blob: b31658de5e70f22fa03f951654bfd9a60334bc02 (
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
|
{% 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>
</section>
{% endblock %}
|