Actualización
This commit is contained in:
10
main/template/default/auth/confirm_session_subscription.tpl
Normal file
10
main/template/default/auth/confirm_session_subscription.tpl
Normal file
@@ -0,0 +1,10 @@
|
||||
<div class="row">
|
||||
<div class="col-sm-3 col-sm-offset-3">
|
||||
<a href="{{ _p.web_main }}auth/courses.php?{{ {'action':'subscribe_to_session', 'session_id':session_id, 'confirm':'1'}|url_encode() }}" class="btn btn-success btn-block">
|
||||
{{ 'Yes'|get_lang }}
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<button type="button" class="btn btn-danger btn-block" data-dismiss="modal">{{ 'No'|get_lang }}</button>
|
||||
</div>
|
||||
</div>
|
||||
18
main/template/default/auth/hrm_courses.tpl
Normal file
18
main/template/default/auth/hrm_courses.tpl
Normal file
@@ -0,0 +1,18 @@
|
||||
{% for user in users %}
|
||||
<div class="panel panel-info">
|
||||
<div class="panel-heading">
|
||||
<h3 class="panel-title">
|
||||
<img src="{{ user.picture_url }}" alt="{{ user.complete_name }}">
|
||||
{{ user.complete_name }}
|
||||
<small>{{ user.username }}</small>
|
||||
</h3>
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{% if not user.course_list %}
|
||||
<div class="alert alert-warning">{{ 'UserHasNoCourse'|get_lang }}</div>
|
||||
{% else %}
|
||||
{{ user.course_list }}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
14
main/template/default/auth/inscription.tpl
Normal file
14
main/template/default/auth/inscription.tpl
Normal file
@@ -0,0 +1,14 @@
|
||||
{%
|
||||
extends hide_header == true
|
||||
? 'layout/blank.tpl'|get_template
|
||||
: 'layout/layout_1_col.tpl'|get_template
|
||||
%}
|
||||
|
||||
{% block content %}
|
||||
|
||||
{{ inscription_header }}
|
||||
{{ inscription_content }}
|
||||
{{ form }}
|
||||
{{ text_after_registration }}
|
||||
|
||||
{% endblock %}
|
||||
10
main/template/default/auth/readme.txt
Normal file
10
main/template/default/auth/readme.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
The following files were sent to the main/auth folder to improve the template option in this section
|
||||
|
||||
|
||||
list files:
|
||||
|
||||
-catalog_layout.php
|
||||
-categories_list.php
|
||||
-courses_categories.php
|
||||
-courses-list.php
|
||||
-layout.php
|
||||
Reference in New Issue
Block a user