34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
{% extends "base_workspace.html.to" %}
|
|
|
|
{% block workspace_content %}
|
|
|
|
{% for project in projects %}
|
|
<div class='block-list project-list-item'>
|
|
<header class='block-list__header'>
|
|
<h2 class='block-list__title'>{{ project['name'] }} ({{ len(project['environments'])}} environments)</h2>
|
|
<a class='icon-link' href='/workspaces/123456/projects/789/edit'>
|
|
{% module Icon('edit') %}
|
|
<span>edit</span>
|
|
</a>
|
|
</header>
|
|
<ul>
|
|
{% for environment in project['environments'] %}
|
|
<li class='block-list__item project-list-item__environment'>
|
|
<a href='/' target='_blank' rel='noopener noreferrer' class='project-list-item__environment__link'>
|
|
{% module Icon('link') %}
|
|
<span>{{ environment["name"]}}</span>
|
|
</a>
|
|
|
|
<div class='project-list-item__environment__members'>
|
|
<div class='label'>0</div>
|
|
<span>members</span>
|
|
</div>
|
|
</li>
|
|
{% end %}
|
|
</ul>
|
|
</div>
|
|
{% end %}
|
|
|
|
{% end %}
|
|
|