How to edit about page /courses/course-id/about

I want add Row on about page example


My about page
image

if, i want add row. How to edit?

I don’t know if I’m doing it right. example
I edit file location : openedx/edx-platform/lms/templates/courseware# vim course_about.html
edx-platform-1/lms/templates/courseware/course_about.html at master · microsoftarchive/edx-platform-1 · GitHub in line 313
I add ## to before if and endif for enable tag

  •           ##%if course_price and (can_add_course_to_cart or is_cosmetic_price_enabled):
                <li class="important-dates-item">
                  <i class="icon fa fa-money"></i>
                  <p class="important-dates-item-title">${_("Price")}</p>
                  <span class="important-dates-item-text">${course_price}</span>
                </li>
              ##%endif
    
  • Hi choltha , for it to work, the indentation is important and whatever you comment, delete it directly because otherwise it won’t take the changes correctly.