| <!-- |
| Copyright 2019 EveryUP srl |
| |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| {% extends "base.html" %} |
| |
| {% load staticfiles %} |
| |
| {% block head_block %} |
| {{ block.super }} |
| |
| {% endblock %} |
| |
| {% block left_sidebar %} |
| {{ block.super }} |
| |
| {% endblock %} |
| |
| {% block title_header_big %} |
| {{ block.super }} |
| {{project_overview.name}} |
| {% endblock %} |
| |
| {% block title_header_small %} |
| {{ block.super }} |
| Overview |
| {% endblock %} |
| |
| {% block breadcrumb_body %} |
| {{ block.super }} |
| {% if user.is_admin %} |
| <li><a href="{% url 'projects:projects_list' %}">Projects</a></li> |
| {% else%} |
| <li><a href="#">Projects</a></li> |
| {% endif %} |
| <li><a href="{% url 'projects:open_project' %}">{{project_overview.name}}</a></li> |
| {% endblock %} |
| |
| {% block content_body %} |
| {{ block.super }} |
| <div class="row"> |
| <div class="col-md-6"> |
| <div class="box box-widget"> |
| <div class="box-footer no-padding"> |
| <ul class="nav nav-stacked"> |
| <li><a><b>Project Name:</b> <span class="pull-right">{{project_overview.name}}</span></a> |
| </li> |
| <li><a><b>Info:</b> <span |
| class="pull-right">{{project_overview.info}}</span></a></li> |
| <li><a><b>Last updated:</b> <span class="pull-right">{{project_overview.updated_date}}</span></a> |
| </li> |
| <li><a><b>Owner:</b> <span |
| class="pull-right">{{project_overview.owner}}</span></a></li> |
| |
| <li><a><b>Validated:</b> |
| {% if project_overview.validated %} |
| <span class="pull-right badge bg-green">{{project_overview.validated}}</span> |
| {% else %} |
| <span class="pull-right badge bg-red">{{project_overview.validated}}</span> |
| {% endif %} |
| </a> |
| |
| </li> |
| |
| </ul> |
| |
| </div> |
| |
| </div> |
| </div> |
| <div class="col-md-6"> |
| {% block content_descritors_col %} |
| |
| {% endblock %} |
| </div> |
| </div> |
| |
| {% endblock %} |
| |
| {% block resource_block %} |
| {{ block.super }} |
| |
| |
| {% endblock %} |
| |
| |