fix registration content
This commit is contained in:
parent
f0a8613581
commit
eeeb9698f9
@ -15,7 +15,7 @@
|
||||
{% for lista in charlas %}
|
||||
{% set categoria = lista.categoria %}
|
||||
<section class="{{ loop.index == 1 ? 'in active' }} tab-pane fade" id="{{categoria}}">
|
||||
{% for charla in lista.charlas|sort((a,b)=>a.speaker.nombre|split(' ')[1]<=>b.speaker.nombre|split(' ')[1]) %}
|
||||
{% for charla in lista.charlas|sort( (a,b) => a.speaker.nombre|split(' ')[1]<=> b.speaker.nombre|split(' ')[1] ) %}
|
||||
<div class="media">
|
||||
<div class="media-left media-middle">
|
||||
|
||||
|
@ -37,18 +37,41 @@
|
||||
<div class="col-xs-12">
|
||||
<h1><strong>Inscripción</strong></h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h2>Tarifa de inscripción:</h2>
|
||||
<p style="font-size:16px; padding-bottom:5px;">Existe una tarifa de inscripción de USD 100, la cual incluye café,
|
||||
cena y asistencia internacional, además de todas las actividades de la conferencia.
|
||||
</p>
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Categoría</th>
|
||||
<th>Hasta el 30 de Abril de 2020</th>
|
||||
<th>A partir del 1º de Mayo 2020</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><b>Participantes</b></td>
|
||||
<td>U$S 150 ($UY {{150*40}})</td>
|
||||
<td>U$S 200 ($UY {{200*40}})</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><b>Estudiantes</b></td>
|
||||
<td>U$S 50 ($UY {{50*40}})</td>
|
||||
<td>U$S 100 ($UY {{100*40}})</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3">
|
||||
*Incluye todas las actividades del congreso y las pausas de café
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
También hay una tarifa reducida de 50 USD, que incluye café, cena y todas las actividades de la conferencia.
|
||||
Solo está disponible para estudiantes y grupos especiales (envíe un mensaje que fundamentando por qué solicita
|
||||
la reducción).
|
||||
</p>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
El Comité Organizador otorgará un número limitado de becas (no dude en ponerse en contacto con cualquiera de los organizadores locales).
|
||||
El Comité Organizador otorgará un número limitado de becas (no dude en ponerse en contacto con cualquiera de los
|
||||
organizadores locales).
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@ -56,49 +79,42 @@
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h2>Conference Fees:</h2>
|
||||
<p style="font-size:16px; padding-bottom:5px;">There is a Conference Fee of 100 USD, which includes coffee, dinner and international support,
|
||||
besides all the conference activities.
|
||||
</p>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
There is also a Reduced Fee of 50 USD, which includes coffee, dinner, and all conference activities.
|
||||
This is only available for students, and special groups (please send a message why you apply for reduction).
|
||||
</p>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
A limited number of scholarships will be awarded by the Organizing Committe (please do not hesitate to contact
|
||||
any of the local organizers).
|
||||
</p>
|
||||
<hr class="separador"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<table class="table table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Categoría</th>
|
||||
<th>Antes del 1º de Mayo</th>
|
||||
<th>Después del 1º de Mayo</th>
|
||||
<th>Category</th>
|
||||
<th>Until 30 April 2020</th>
|
||||
<th>From May 1, 2020 until the Congress</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><b>Investigadores</b></td>
|
||||
<td>U$S 150 ($UY {{150*40}})</td>
|
||||
<td>U$S 200 ($UY {{200*40}})</td>
|
||||
<td><b>Participants</b></td>
|
||||
<td>U$S 150 </td>
|
||||
<td>U$S 200</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><b>Students</b></td>
|
||||
<td>U$S 50 </td>
|
||||
<td>U$S 100 </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><b>Estudiantes</b></td>
|
||||
<td>U$S 50 ($UY {{50*40}})</td>
|
||||
<td>U$S 100 ($UY {{100*40}})</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><b>*</b> Se darán descuentos o exoneraciones ante pedidos fundamentados</p>
|
||||
<td colspan="3">
|
||||
*Includes all the conference activities and the coffee breaks
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<p style="font-size:16px;padding-bottom:5px;">
|
||||
A limited number of scholarships will be awarded by the Organizing Team. In case of need, don't hesitate in contacting
|
||||
the organizing committee.
|
||||
</p>
|
||||
<hr class="separador"/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user