Skip to content

Commit

Permalink
fix template capacita
Browse files Browse the repository at this point in the history
  • Loading branch information
luk156 committed Jan 23, 2014
1 parent 65f34fd commit 8bed21d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions get2/calendario/templates/cerca_persona.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ <h4 class="header">
</script>

<div class="row-fluid">
<div class="span1">
<div class="span2">
<div class="box">
<div class="box-header">
<h5>Anteprima</h5>
Expand All @@ -52,7 +52,7 @@ <h5>Anteprima</h5>
</div>
</div>
</div>
<div class="span6">
<div class="span5">
<div class="box">
<div class="box-header">
<h5><i class="icon-search"></i> Cerca persone</h5>
Expand All @@ -61,7 +61,7 @@ <h5><i class="icon-search"></i> Cerca persone</h5>
<table class="table table-striped no-more-tables" id="cerca_persona">
<thead>
<tr>
<th>Nome</th><th>Mansioni</th><th>Telefono</th></th><th>Disponibilita'</th>
<th>Nome</th><th>Capacita'</th><th>Telefono</th></th><th>Disponibilita'</th>
</tr>
</thead>
{%for persona in persone%}
Expand Down Expand Up @@ -119,7 +119,7 @@ <h5><i class="icon-search"></i> Cerca persone</h5>
{% endfor %}
<tr {%if persona.stato != 'disponibile'%} class="error" {%endif%} id="persona-{{persona.id}}">
<td data-title="Nome" class="nome">{{persona}}</td>
<td data-title="Mansioni" class="mansioni">{% for m in persona.competenze.all %}<span class="badge-mansione">{{m}}</span> {% endfor %}</td>
<td data-title="Mansioni" class="mansioni">{% for m in persona.capacita %}<span class="badge-mansione">{{m}}</span> {% endfor %}</td>
<td data-title="telefono">{{persona.telefono|safe}}</td>
<td data-title="Disponibilita" class="disponibilita">
<SELECT NAME="stato" class="span7" ONCHANGE="disp(this);" id="sel-{{persona.id}}">
Expand Down

0 comments on commit 8bed21d

Please sign in to comment.