summaryrefslogtreecommitdiff
path: root/static/website/templates/comment-abstract.html
blob: 2695ba3e5d50ee69640935da0be9b1b3c47c0b94 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{% extends "base.html" %}
{% load static %}
{% load widget_tweaks %}
{% block content %}

<section id="comment_abstract" class="section comment_abstract">
        <div class="container">
            <p>
            <center>
                {% if proposal.proposal_type == "PAPER"%}
                <h2>Abstract Details</h2>
                {% else %}
                <h2>Workshop Details</h2>
                {% endif %}
            </center>
            </p>
            <h3>{{ proposal.user.first_name }} {{ proposal.user.last_name }}</h3>
            <p><b>Title of the paper: </b>&nbsp;{{ proposal.title }}</p>
            <p><b>Name of the author(s):</b> &nbsp;{{proposal.name_of_authors}}</p>
            <p align="justify"><b>About the Author(s): </b>&nbsp;{{ proposal.about_the_authors |linebreaks }}</p>
            <!--{% if proposal.proposal_type == "PAPER"%}
             <p align="justify"><b>Paper:</b>&nbsp;
                {% else %}
            <p align="justify"><b>Description:</b>&nbsp;
                {% endif %}
                {{ proposal.paper | linebreaks }}
            </p>
            {% if proposal.prerequisite %}
            <p align="justify"><b>Prerequisite: </b>&nbsp;{{ proposal.prerequisite| linebreaks }}</p>
            {% endif%} -->
            <p><b>Duration: </b>&nbsp;{{ proposal.duration }} {% if proposal.proposal_type == "PAPER"%} Mins {% else %}Hours {%endif%}</p>
            {% if proposal.proposal_type == "PAPER"%}
            <p><b>Tags: </b>&nbsp;{{ proposal.tags }}</p>
            {% else %}
            <p><b>Level: </b>&nbsp;{{ proposal.tags }}</p>
            {% endif %}
            {% if url %}
            <b>Attachment: </b>&nbsp;<a href="{{ url }}" class="btn btn-info" target="_blank">{{ filename }}</a>
            {% endif %}
            <p><b>Date Created: </b>&nbsp;{{ proposal.date_created }}</p>
            <form action="{% url 'website:rate_proposal' proposal.id %}" method='POST' enctype="multipart/form-data">
                {% csrf_token %}
                <b>Ratings :</b>
                <select name="rating" style="width:70px;" >
                    <!--Call run() function-->
                    <option value="0">0</option>
                    <option value="1">1</option>
                    <option value="2">2</option>
                    <option value="3">3</option>
                    <option value="4">4</option>
                    <option value="5">5</option>
                    <option value="6">6</option>
                    <option value="7">7</option>
                    <option value="8">8</option>
                    <option value="9">9</option>
                    <option value="10">10</option>
                </select>
                /10 &nbsp;
                <input class="btn btn btn-primary"  type="submit"  value="Rate">
            </form>
            <h4>Ratings</h4>
            {% for rate in rates %}
            <div>
                {{rate.rating}}/10 
                by - {{ rate.user }}
            </div>
            {% endfor %}
            <hr>
            <h4>Comments</h4>
            {% for comment in comments %}
            <div>
                <strong>Comment By:</strong>
                {{ comment.user.first_name }} {{ comment.user.last_name }}
                <p>{{ comment.comment| linebreaks }}</p>
                <!--  {% if user == comment.user %}
                    <form action="" method='POST' enctype="multipart/form-data">
                    {% csrf_token %} 
                    {% endif %} -->
            </div>
            <hr>
            </form>
            {% endfor %}
            <form action="{% url 'website:comment_abstract' proposal.id %}" method='POST' enctype="multipart/form-data">
                {% csrf_token %}
                <textarea rows="5" cols="100" id="comment" class= "comment" name="comment" placeholder = "Add commnet here..."></textarea><br/>
                <input class="button special"  type="submit" value="Comment">
            </form>
            <!--     <form action="{% url 'website:status' proposal.id %}" method='POST'>{% csrf_token %}
                <input type="submit" class="button special" style="background:green" value="Accept" name="accept"/>
                <input type="submit" class="button special" style="background:red "value="Reject" name="reject"/>
                  <input type="submit" class="button special" style="background:grey "value="Resubmit" name="resubmit"/>
                
                 </form>
                -->
        </div>
        </section>
        {% endblock %}