forked from public/foundryvtt-reve-de-dragon
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<h4>Soins</h4>
 | 
						|
<div>
 | 
						|
  <a class="chat-card-button creer-tache-blessure-legere"><i class="fas fa-first-aid"></i> légère</a>
 | 
						|
  <a class="chat-card-button creer-tache-blessure-grave"><i class="fas fa-first-aid"></i> grave</a>
 | 
						|
  <a class="chat-card-button creer-tache-blessure-critique"><i class="fas fa-first-aid"></i> critique</a>
 | 
						|
</div>
 | 
						|
<ul class="item-list alterne-list">
 | 
						|
  {{#each taches as |tache id|}}
 | 
						|
    {{#if (eq tache.system.competence 'Chirurgie')}}
 | 
						|
    <li class="item flexrow list-item" data-item-id="{{tache._id}}">
 | 
						|
      <img class="sheet-competence-img" src="{{tache.img}}" />
 | 
						|
      <span class="competence-title tache-label"><a>{{tache.name}}
 | 
						|
        ({{tache.system.points_de_tache_courant}}{{#if
 | 
						|
          (or @root.options.isGM (not tache.system.cacher_points_de_tache))
 | 
						|
        }}/{{tache.system.points_de_tache}}{{/if}})</a></span>
 | 
						|
      <div class="item-controls flex-shrink">
 | 
						|
        <a class="item-edit" title="Edit Item"><i class="fas fa-edit"></i></a>
 | 
						|
        <a class="item-delete" title="Delete Item"><i class="fas fa-trash"></i></a>
 | 
						|
      </div>
 | 
						|
    </li>
 | 
						|
    {{/if}}
 | 
						|
  {{/each}}
 | 
						|
</ul>
 |