Add comment system with models, forms, and UI integration for lessons
This commit is contained in:
parent
c22622ebc1
commit
95111240bc
26 changed files with 1001 additions and 77 deletions
6
templates/courses/partials/_course_header.html
Normal file
6
templates/courses/partials/_course_header.html
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<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 <a href="{% url 'another_profile' course.author.id %}">{{ course.author }}</a>
|
||||
</p>
|
||||
<p>{{ course.content }}</p>
|
||||
Loading…
Add table
Add a link
Reference in a new issue