#52 : Debut gestion astrologie

This commit is contained in:
2020-12-10 20:14:35 +01:00
parent 0eea44d2c5
commit 7cce58d895
5 changed files with 99 additions and 1 deletions

View File

@ -0,0 +1,22 @@
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<div class="header-fields">
<h1 class="charname">Astrologie</h1>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body">
<div class="form-group">
<label for="astralList">Nombres Astraux</label>
<table>
<tr>
{{#each astrologieData as |nombreData key|}}
<td>{{nombreData.humanDate}} - {{nombreData.nombreAstral}}</td>
{{/each}}
</tr>
</table>
</div>
</section>
</form>

View File

@ -1,6 +1,7 @@
<div id="calendar-time-container">
<div id="calendar">
<i id="calendar-btn-edit" class="fas fa-cog" title="Editer"></i>
<i id="astrologie-btn-edit" class="fas fa-cog" title="Astrologie"></i>
<div id="calendar-hdr">
<p id="calendar--move-handle" class="calendar-date-rdd" title="Deplacer">Jour {{jourMois}} de {{nomMois}} ({{nomSaison}})</p>
</div>