Skip to content

Commit

Permalink
Cambios solicitados en la reunión del 23 de mayo
Browse files Browse the repository at this point in the history
  • Loading branch information
quique committed May 23, 2018
1 parent 11d6b54 commit 5cd378c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions config/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
$db = require __DIR__ . '/db.php';

$config = [
'id' => 'FIXME', // Unique ID that differentiates an application from others.
'id' => 'jonathan', // Unique ID that differentiates an application from others.
'basePath' => dirname(__DIR__),
'aliases' => [
'@bower' => '@vendor/bower-asset',
Expand Down Expand Up @@ -96,7 +96,7 @@
// 'switchIdentitySessionKey' => 'myown_usuario_admin_user_key',
],
],
'name' => 'Propuestas de másteres universitarios', // Application name that may be displayed to end users
'name' => 'Propuestas de másteres de referencia', // Application name that may be displayed to end users
'params' => $params,
'timeZone' => 'Europe/Madrid', // Default time zone of the PHP runtime
];
Expand Down
2 changes: 1 addition & 1 deletion models/PropuestaCentro.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function attributeLabels()
parent::attributeLabels(),
[
'nombre_centro' => Yii::t('models', 'Nombre del centro'),
'documento_firma' => Yii::t('models', 'Documento firmado por el decano o director'),
'documento_firma' => Yii::t('models', 'Informe favorable de la Junta de Centro'),
]
);
}
Expand Down
5 changes: 3 additions & 2 deletions views/propuesta/_formulario.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
?>
<div class='cabecera-azul table-responsive'>
<label class="control-label"><?php echo Yii::t('jonathan', 'Centro(s)'); ?></label>
<p><?php echo Yii::t('jonathan', 'En caso de haber más de uno, el primero será el centro gestor.'); ?></p>
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
Expand Down Expand Up @@ -271,8 +272,8 @@
<table class="table table-bordered table-striped table-hover">
<thead>
<tr>
<th><?php echo $pc->getAttributeLabel('nombre_grupo_inves'); ?></th>
<th><?php echo $pc->getAttributeLabel('documento_firma'); ?></th>
<th><?php echo $pg->getAttributeLabel('nombre_grupo_inves'); ?></th>
<th><?php echo $pg->getAttributeLabel('documento_firma'); ?></th>
<th></th>
</tr>
</thead>
Expand Down
2 changes: 1 addition & 1 deletion views/site/ayuda.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<h2>Soporte administrativo</h2>

<p>Contacte con: XXX</p>
<p>Contacte con la Dirección de Organización Académica &lt;[email protected]&gt;.</p>


<h2>Soporte técnico</h2>
Expand Down
2 changes: 1 addition & 1 deletion views/site/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<span class="icon-graduation-cap2"></span>
<h1><?php echo Yii::t(
'jonathan',
'Propuestas de <strong>másteres</strong><br>universitarios'
'Propuestas de <strong>másteres</strong><br>de referencia'
); ?></h1>
<span class="icon-stars" style="font-size: 2.4rem;"></span>
</div>
Expand Down

0 comments on commit 5cd378c

Please sign in to comment.