Utilisation taille CSS pour TD key
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
{% for task in latest_task_list %}
|
||||
|
||||
<tr style="" title="{{task.desc}}">
|
||||
<td style="vertical-align: top;font-weight: bold;" width="100" >
|
||||
<td style="vertical-align: top;font-weight: bold;" class="td_key" >
|
||||
{{task.key}}
|
||||
{% if task.team_transfert %}
|
||||
<svg class="team_svg_icon" x="0px" y="0px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||
@@ -24,8 +24,8 @@
|
||||
{% endif %}
|
||||
</td>
|
||||
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
||||
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %}; width: 45%;display: inline-block">{{ task.team_1 }}</span>
|
||||
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 45%;display: inline-block">{{ task.team_2 }}</span>
|
||||
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %}; width: 150px;display: inline-block">{{ task.team_1 }}</span>
|
||||
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_2 }}</span>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
@@ -35,10 +35,25 @@
|
||||
</tr>
|
||||
{% for task in night_task_list %}
|
||||
{% if task.str_start_date == today %}
|
||||
<tr style=""><td style="font-weight: bold;vertical-align: top;{% if task.team_transfert %}background-color: orange;{% endif %}" width="100" >{{task.key}}</td>
|
||||
<tr style=""><td style="font-weight: bold;vertical-align: top;{% if task.team_transfert %}background-color: orange;{% endif %}" class="td_key" >
|
||||
{{task.key}}
|
||||
{% if task.team_transfert %}
|
||||
<svg class="team_svg_icon" x="0px" y="0px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||
<use class="team_svg_icon" xlink:href="{% static 'mycaldav/images/team_trans_1.svg' %}#icon"></use>
|
||||
</svg>
|
||||
<svg class="team_svg_icon" x="0px" y="0px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||
<use class="team_svg_icon" xlink:href="{% static 'mycaldav/images/team_trans_2.svg' %}#icon"></use>
|
||||
</svg>
|
||||
{% endif %}
|
||||
{% if task.team_manif %}
|
||||
<svg class="team_svg_icon" x="0px" y="0px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
|
||||
<use class="team_svg_icon" xlink:href="{% static 'mycaldav/images/team_manif.svg' %}#icon"></use>
|
||||
</svg>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td style="{% if task.done %}text-decoration:line-through{% endif %}">
|
||||
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %};width: 45%;display: inline-block">{{ task.team_1 }}</span>
|
||||
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 45%;display: inline-block">{{ task.team_2 }}</span>
|
||||
<span style="{% if task.team_1_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_1 }}</span>
|
||||
<span style="{% if task.team_2_chef %}color: yellow !important;{% endif %};width: 150px;display: inline-block">{{ task.team_2 }}</span>
|
||||
</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user