diff --git a/app/views/users/_course_form.html.erb b/app/views/users/_course_form.html.erb
index 610c9e633..1da44c9bc 100644
--- a/app/views/users/_course_form.html.erb
+++ b/app/views/users/_course_form.html.erb
@@ -29,8 +29,10 @@
-
-
+ <% @course = Course.find_by_extra(membership.project.identifier)%>
+ <% unless @course.nil? %>
+ <%= l(:label_main_teacher) %> : <%= link_to(@course.teacher.show_name, user_path(@course.teacher)) %>
+ <% end %>
<%= l(:label_create_time) %> :<%= format_time(membership.created_on) %>
|