mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
Dynamically fill the project table cards
This commit is contained in:
parent
9b4184addc
commit
c550ba078e
1 changed files with 73 additions and 89 deletions
|
@ -4,7 +4,7 @@
|
|||
<div class="flex-shrink-0 mt-0">
|
||||
<div class="flex ">
|
||||
{% for member in card.team %}
|
||||
<span class="transform hover:scale-110 duration-150 ease-in-out" tooltip="Raphael" >
|
||||
<span class="transform hover:scale-110 duration-150 ease-in-out" tooltip="{{ member | capitalize }}">
|
||||
<img class="inline-block h-6 w-6 rounded-full text-white shadow-solid border-2 border-white" src="{{ site.img_url }}profiles/{{ member | downcase }}.png" alt="{{ member }}">
|
||||
</span>
|
||||
{% endfor %}
|
||||
|
@ -76,7 +76,7 @@
|
|||
<div>
|
||||
<img src="" alt="">
|
||||
</div>
|
||||
<span class=" text-md opacity-50">Description</span>
|
||||
<span class=" text-md opacity-50">Assignment</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -91,29 +91,13 @@
|
|||
<hr>
|
||||
</div>
|
||||
<div class="pt-5">
|
||||
<h3 class="opacity-75">We Completed the Server Part</h3>
|
||||
<p class="">
|
||||
The Safing API has come very far. It actually already is online, signing in valid users and responding with information on each users SPN subscription status. Setting the API up securely took quite a lot of planning, but we are happy about the result.
|
||||
</p>
|
||||
</div>
|
||||
<div class="pt-5">
|
||||
<h3 class="opacity-75">Designs Are Done Too</h3>
|
||||
<p class="">
|
||||
Now in the Portmaster part, we both need to provide an interface where you can log in to the SPN and where it displays your current account status. The designs for this have also been completed by Luke.
|
||||
</p>
|
||||
</div>
|
||||
<div class="pt-5">
|
||||
<h3 class="opacity-75">What is Missing is The Client Side</h3>
|
||||
<p class="">
|
||||
The only puzzle piece missing is the frontend implementation, <a href="">Here</a> meaning the Portmaster UI actually showing the designs and making the API calls. This project is nearing its completion, so stay tuned!
|
||||
</p>
|
||||
</div>
|
||||
<div class="pt-12">
|
||||
<hr>
|
||||
<div class="flex relative pb-2 pt-6 -mt-1">
|
||||
<!-- <span style="font-size: 0.8rem;">#866 opened by <strong>BinaryMuse</strong> to atom/github</span> -->
|
||||
<span style="font-size: 0.8rem;" class="absolute right-0"><strong>01/6/2020</strong> <span class="opacity-50">~</span> <strong>036/6/2020</strong></span>
|
||||
</div>
|
||||
{% for tag in card.progress %}
|
||||
{% if tag.type == 'a' %}
|
||||
<{{ tag.type }} href='{{ tag.href }}'>{{ tag.text }}</{{tag.type}}>
|
||||
{% else %}
|
||||
<{{ tag.type }}>{{ tag.text }}</{{tag.type}}>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue