{% extends 'base.html' %} {% load static %} {% block content %}

Publication List:

{% regroup publication|dictsort:"publication_type" by publication_type as publication_list %} {% for publication in publication_list %}

{% if publication.grouper.value == 1%} {% for pub in publication.list %} {% endfor %}
Author Paper Title Journal Title Year Page num/ Volume Issue Date/Publication Link Impact Factor
{% if pub.author %}{{pub.author}} {% endif %} {% if pub.paper_title %}{{pub.paper_title}} {% endif %} {% if pub.journal_title %}{{pub.journal_title}} {% endif %} {% if pub.journal_year %}{{pub.journal_year}}{% endif %} {% if not pub.journal_page_num and not pub.journal_volume %} - {% endif %} {% if pub.journal_page_num %}{{pub.journal_page_num}}{% endif %} {% if pub.journal_volume %} /{{pub.journal_volume}} {% endif %}
{% if pub.journal_issue_date %} {{pub.journal_issue_date}}{% endif %} {% if pub.journal_publication_link %} {{pub.journal_publication_link}} {% elif not pub.journal_publication_link or pub.journal_accepted_date and not pub.journal_issue_date %}Accepted for publication {% endif %}
{{pub.journal_impact_factor}}
{% endif %} {% if publication.grouper.value == 2%} {% for pub in publication.list %} {% endfor %}
Author Proceeding/Presentation Title Conference/Journal Title Start Date End Date Page num/ Volume Place conf end date
{% if pub.author %}{{pub.author}} {% endif %} {% if pub.conf_title %}{{pub.conf_title}} {% endif %} {% if pub.conf_detail %}{{pub.conf_detail}} {% endif %} {% if pub.conf_date_start %} {{pub.conf_date_start}} {% endif %} {% if pub.conf_date_end %} {{pub.conf_date_end}} {% endif %} {% if not pub.conf_page_num and not pub.conf_volume %} - {% endif %} {% if pub.conf_page_num %}{{pub.conf_page_num}}{% endif %} {% if pub.conf_page_num %}/{% endif %} {% if pub.conf_volume %} {{pub.conf_volume}} {% endif %} {% if pub.conf_place %}{{pub.conf_place}} {% endif %} {{pub.conf_date_end}}
{% endif %} {% if publication.grouper.value == 3%} {% for pub in publication.list %} {% endfor %}
Author Name Year ISBN Photo
{% if pub.author %}{{pub.author}} {% endif %} {% if pub.book_name %}{{pub.book_name}} {% endif %} {% if pub.book_year %}{{pub.book_year}} {% endif %} {% if pub.book_isbn %}{{pub.book_isbn}} {% endif %} {% if pub.book_photo %} {% endif %}
{% endif %} {% if publication.grouper.value == 4%} {% for pub in publication.list %} {% endfor %}
Author Chapter Name Book Name Year ISBN Page No.
{% if pub.author %}{{pub.author}} {% endif %} {% if pub.chap_name %}{{pub.chap_name}} {% endif %} {% if pub.chap_in_book_name %}{{pub.chap_in_book_name}} {% endif %} {% if pub.chap_year %}{{pub.chap_year}} {% endif %} {% if pub.chap_isbn %}{{pub.chap_isbn}} {% endif %} {% if pub.chap_page_num %}{{pub.chap_page_num}} {% endif %}
{% endif %}
{% endfor %}
{% endblock %}