parent
5bd0ab12f2
commit
14dbb82afb
@ -1,17 +0,0 @@ |
||||
<div class="normal-message"> |
||||
{{ "HelloXAsYouCanSeeYourCourseListIsEmpty"|get_lang | format(_u.complete_name) }} |
||||
|
||||
{% if count_courses == 0 %} |
||||
{{ "PleaseAllowUsALittleTimeToSubscribeYouToOneOfOurCourses"|get_lang }} |
||||
{% else %} |
||||
|
||||
{% if "allow_students_to_browse_courses"|api_get_setting == 'true' %} |
||||
{{ "GoAheadAndBrowseOurCourseCatalogXOnceRegisteredYouWillSeeTheCourseHereX"|get_lang|format(course_catalog_link, course_list_link) }} |
||||
<a class="btn btn-primary btn-large" href="{{ course_catalog_url }}"> |
||||
{{ "CourseCatalog"|get_lang }} |
||||
</a> |
||||
{% else %} |
||||
{{ "PleaseAllowUsALittleTimeToSubscribeYouToOneOfOurCourses"|get_lang }} |
||||
{% endif %} |
||||
{% endif %} |
||||
</div> |
@ -1,6 +1,6 @@ |
||||
{# Files that can't be loaded using webpack #} |
||||
|
||||
<script src="{{ asset('libs/ckeditor/ckeditor.js') }}"></script> |
||||
<script src="{{ url('legacy_public') ~ 'libs/ckeditor/ckeditor.js' }}"></script> |
||||
{#<script src="{{ asset('libs/readmore-js/readmore.js') }}"></script>#} |
||||
<script src="{{ asset('libs/js-cookie/src/js.cookie.js') }}"></script> |
||||
<script src="{{ url('legacy_public') ~ 'libs/js-cookie/src/js.cookie.js' }}"></script> |
||||
|
||||
|
@ -0,0 +1,24 @@ |
||||
{% autoescape false %} |
||||
{{ "HelloXAsYouCanSeeYourCourseListIsEmpty" | trans | format(app.user.completeName) }} |
||||
|
||||
{% if count_courses == 0 %} |
||||
{{ "PleaseAllowUsALittleTimeToSubscribeYouToOneOfOurCourses"|trans }} |
||||
{% else %} |
||||
|
||||
{% if chamilo_settings_get("display.allow_students_to_browse_courses") == 'true' %} |
||||
{{ |
||||
"GoAheadAndBrowseOurCourseCatalogXOnceRegisteredYouWillSeeTheCourseHereX" | trans | |
||||
format( |
||||
'<a href="' ~ url('main', {'name': 'auth/courses.php'}) ~ '"/> '~ "here" | trans ~'</a>', |
||||
'<a href="' ~ url('userportal') ~ '"/> '~ "here" | trans ~'</a>' |
||||
) |
||||
}} |
||||
|
||||
<a class="btn btn-primary btn-large" href="{{ url('main', {'name': 'auth/courses.php'}) }}"> |
||||
{{ "CourseCatalog"|trans }} |
||||
</a> |
||||
{% else %} |
||||
{{ "PleaseAllowUsALittleTimeToSubscribeYouToOneOfOurCourses"|trans }} |
||||
{% endif %} |
||||
{% endif %} |
||||
{% endautoescape %} |
@ -1,26 +0,0 @@ |
||||
{% autoescape false %} |
||||
|
||||
{{ "HelloXAsYouCanSeeYourCourseListIsEmpty" | trans | format(app.user.completeName) }} |
||||
|
||||
{% if count_courses == 0 %} |
||||
{{ "PleaseAllowUsALittleTimeToSubscribeYouToOneOfOurCourses"|trans }} |
||||
{% else %} |
||||
|
||||
{% if chamilo_settings_get("display.allow_students_to_browse_courses") == 'true' %} |
||||
{{ |
||||
"GoAheadAndBrowseOurCourseCatalogXOnceRegisteredYouWillSeeTheCourseHereX" | trans | |
||||
format( |
||||
'<a href="' ~ url('main', {'name': 'auth/courses.php'}) ~ '"/> '~ "here" | trans ~'</a>', |
||||
'<a href="' ~ url('userportal') ~ '"/> '~ "here" | trans ~'</a>' |
||||
) |
||||
}} |
||||
|
||||
<a class="btn btn-primary btn-large" href="{{ url('main', {'name': 'auth/courses.php'}) }}"> |
||||
{{ "CourseCatalog"|trans }} |
||||
</a> |
||||
{% else %} |
||||
{{ "PleaseAllowUsALittleTimeToSubscribeYouToOneOfOurCourses"|trans }} |
||||
{% endif %} |
||||
{% endif %} |
||||
|
||||
{% endautoescape %} |
Loading…
Reference in new issue