Profil Teacher and examples

This commit is contained in:
2024-03-10 16:01:47 +01:00
committed by Wal
parent 3cf5153e79
commit 042553c123
2 changed files with 156 additions and 17 deletions

View File

@ -17,8 +17,13 @@
<div class="bodu">
<div class="container">
<div class="accept"><button style="background-color:rgb(0,105,50);">jdfhdfgj</button></div>
<div class="refuse"><button style="background-color:rgb(105,0,0);">dfkjghefkgj</button></div>
<div class="id"><a>{{id}}</a></div>
<div class="type"><a>{{type}}</a></div>
<div class="surname"><a>{{lastName}}</a></div>
<div class="firstname"><a>{{firstName}}</a></div>
<div class="infos"><button style="background-color:rgb(105,05,105);" >{{i18n("request.moreInfos")}} </button></div>
<div class="accept"><button style="background-color:rgb(0,105,50);">{{i18n("request.accept")}}</button></div>
<div class="refuse"><button style="background-color:rgb(105,0,0);">{{i18n("request.refuse")}}</button></div>
</div>
</div>
</template>
@ -29,9 +34,9 @@
height:100px;
font-size:20px;
display:grid;
grid-template-columns:[firstCol-start]100px[firstCol-end secondCol-start]150px[endCol];
grid-template-columns:[firstCol-start]100px[firstCol-end secondCol-start]150px[secondCol-end thirdCol-start]200px[thirdCol-end fourthCol-start]150px[fourthCol-end]150px[fifthCol-end]150px[sixthCol-end]150px[endCol];
grid-template-areas:
" accept refuse";
"id type surname firstname infos accept refuse";
column-gap:10px;
}