mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-04 02:53:06 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
{% extends "core/base.jinja" %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
{% trans %}UV Details{% endtrans %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
	<p><a href="{{ url('pedagogy:guide') }}">{% trans %}Back{% endtrans %}</a></p>
 | 
						|
	<h1>{{ object.code }} - {{ object.title }}</h1>
 | 
						|
	<p>{% trans %}Department: {% endtrans %}{{ object.department }}</p>
 | 
						|
	<p>{{ object.objectives|markdown }}</p>
 | 
						|
	<p>{{ object.program|markdown }}</p>
 | 
						|
	<p>{{ object.skills|markdown }}</p>
 | 
						|
	<p>{{ object.key_concepts|markdown }}</p>
 | 
						|
	<p>{% trans %}UV manager: {% endtrans %}{{ object.manager }}</p>
 | 
						|
 | 
						|
	<p>{{ object.grade_global_average }}</p>
 | 
						|
	<p>{{ object.grade_utility_average }}</p>
 | 
						|
	<p>{{ object.grade_interest_average }}</p>
 | 
						|
	<p>{{ object.grade_teaching_average }}</p>
 | 
						|
	<p>{{ object.grade_work_load_average }}</p>
 | 
						|
 | 
						|
	{% if object.comments.exists() %}
 | 
						|
		<h2>{% trans %}Comments{% endtrans %}</h2>
 | 
						|
		{% for comment in object.comments.all() %}
 | 
						|
			<p>{{ comment.grade_global }}</p>
 | 
						|
			<p>{{ comment.grade_utility }}</p>
 | 
						|
			<p>{{ comment.grade_interest }}</p>
 | 
						|
			<p>{{ comment.grade_teaching }}</p>
 | 
						|
			<p>{{ comment.grade_work_load }}</p>
 | 
						|
			<p>{{ comment.comment|markdown }}</p>
 | 
						|
			<p>{% trans %}Published: {% endtrans %}{{ comment.publish_date }}</p>
 | 
						|
			<p>{% trans %}Author: {% endtrans %}{{ comment.author }}</p>
 | 
						|
			{% if user.is_owner(comment) %}
 | 
						|
				<p><a href="{{ url('pedagogy:comment_update', comment_id=comment.id) }}">{% trans %}Edit{% endtrans %}</a></p>
 | 
						|
				<p><a href="{{ url('pedagogy:comment_delete', comment_id=comment.id) }}">{% trans %}Delete{% endtrans %}</a></p>
 | 
						|
			{% endif %}
 | 
						|
			<p><a href="{{ url('pedagogy:comment_report', comment_id=comment.id) }}">{% trans %}Report{% endtrans %}</a></p>
 | 
						|
			{% if comment.is_reported %}
 | 
						|
				<p>{% trans %}This comment has been reported{% endtrans %}</p>
 | 
						|
			{% endif %}
 | 
						|
		{% endfor %}
 | 
						|
	{% endif %}
 | 
						|
 | 
						|
	<h2>{% trans %}Leave comment{% endtrans %}</h2>
 | 
						|
	<form action="{{ url('pedagogy:uv_detail', uv_id=object.id) }}" method="post" enctype="multipart/form-data">
 | 
						|
        {% csrf_token %}
 | 
						|
		{{ form.as_p() }}
 | 
						|
        <p><input type="submit" value="{% trans %}Comment{% endtrans %}" /></p>
 | 
						|
	</form>
 | 
						|
{% endblock %} |