From c532b037aa6bbbe82ae42f3fb0d4f9c1855120d9 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Sat, 15 Sep 2018 11:44:54 +0530 Subject: Made minor changes --- nccps2018/settings.py | 6 +- static/website/templates/abstract-details.html | 4 +- static/website/templates/cfp.html | 172 +------------------------ 3 files changed, 9 insertions(+), 173 deletions(-) diff --git a/nccps2018/settings.py b/nccps2018/settings.py index 22d32b9..5d148a4 100644 --- a/nccps2018/settings.py +++ b/nccps2018/settings.py @@ -39,6 +39,7 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'widget_tweaks', 'website', ] @@ -130,5 +131,6 @@ STATICFILES_DIRS = [ '/../static/', ] -LOGIN_REDIRECT_URL = '/proposal' -LOGOUT_REDIRECT_URL = '/accounts/login' +LOGIN_REDIRECT_URL = '/nccps-2018/proposal' +LOGOUT_REDIRECT_URL = '/nccps-2018/accounts/login' +LOG_FOLDER= os.path.join(BASE_DIR,'logs') diff --git a/static/website/templates/abstract-details.html b/static/website/templates/abstract-details.html index 07dcfc3..a1b2c2f 100755 --- a/static/website/templates/abstract-details.html +++ b/static/website/templates/abstract-details.html @@ -11,8 +11,8 @@

{{ proposal.user.first_name }} {{ proposal.user.last_name }}


Title:  {{ proposal.title }}

-

About Me:  {{ proposal.about_me | linebreaks }}

-

Abstract:  {{ proposal.abstract |linebreaks }}

+

About the Author(s):  {{ proposal.about_the_authors | linebreaks }}

+ {% if proposal.prerequisite %}

Prerequisite:  {{ proposal.prerequisite |linebreaks }}

{% endif%} diff --git a/static/website/templates/cfp.html b/static/website/templates/cfp.html index 33535be..fc05c3a 100755 --- a/static/website/templates/cfp.html +++ b/static/website/templates/cfp.html @@ -10,113 +10,7 @@ {% block content %}
- +

Call for Papers

@@ -138,6 +32,8 @@
  • Papers are invited on chemical process, modelling, simulation, and optimization.
  • Use of open source software such as DWSIM and OpenModelica will be preferred.
  • 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.
  • +
  • Multiple submissions from one author is allowed.
  • +
  • Maximum 3 authors for one paper are allowed, in that case only one author should submit a paper on behalf of everyone. All authors should register and book a ticket for the conference.
  • Submissions will be judged on originality, significance, interest, clarity, relevance, and presentation.
  • Authors should ensure that their work doesn’t contain plagiarized content and not under copyright elsewhere.
  • Please download the appropriate file for structure of the paper. We encourage use of LaTeX for creating paper.(Click for LaTeX/ Word template)
  • @@ -163,68 +59,6 @@
    - {% endif %}
    -{% block content %} -
    -
    -
    -

    Call for Papers

    -
    -
    -
    -

    We invite papers on Chemical Process Modelling, Simulation and Optimization. Time duration for oral presentation will be 15 minutes. Accepted papers will be published in conference proceedings. Award will be given to best paper and best poster.

    -

    Paper submission starts on September 15 2018.

    -
    -
    -
    -
    -

    - General guidelines for paper submission: -

    -
      -
    • Papers are invited on chemical process, modelling, simulation, and optimization.
    • -
    • Use of open source software such as DWSIM and OpenModelica will be preferred.
    • -
    • 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.
    • -
    • Multiple submissions from one author is allowed.
    • -
    • Maximum 3 authors for one paper are allowed, in that case only one author should submit a paper on behalf of everyone. All authors should register and book a ticket for the conference. -
    • -
    • Submissions will be judged on originality, significance, interest, clarity, relevance, and presentation.
    • -
    • Authors should ensure that their work doesn’t contain plagiarized content and not under copyright elsewhere.
    • -
    • Please download the appropriate file for structure of the paper. We encourage use of LaTeX for creating paper.
    • -
    • Click the following links for templates - -
    • -
    -
    -
    -

    - Suggested Contents of a paper -

    - -
      -
    • Selection of a topic
    • -
    • Importance of a topic
    • -
    • Any difficulties while solving with open source software.
    • -
    • The methodology followed to overcome these difficulties(any assumptions, data regression, custom modelling, etc.)
    • -
    • Validation of the results with published papers/experimentation/commercial simulators like CHEMCAD, Aspen Plus, UniSim etc.
    • -
    • Sensitivity studies, adjust, some tricks used for faster calculation etc done to optimize results and reduce simulation time.
    • -
    -
    - -
    -
    -
    -
    -
    {% endblock %} -- cgit