partirdezero/templates/courses/partials/_course_header.html

6 lines
300 B
HTML

<h1>{{ course.name }}</h1>
<p class="def-author">
<img src="/{{ course.author.profile.avatar }}" alt="Profile Picture" class="profile-picture-mini">
Un cours proposé par&nbsp;<a href="{% url 'another_profile' course.author.id %}">{{ course.author }}</a>
</p>
<p>{{ course.content }}</p>