1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-30 19:52:20 +01:00

Display the tag and theme field on the detail view of a project

This commit is contained in:
Cyril 2022-08-01 17:44:36 +02:00
parent acbd327f6d
commit be53adb551
2 changed files with 16 additions and 0 deletions

View File

@ -4,6 +4,7 @@
- Added a test for multiple reservations on the same space slot
- Fix a security issue: updated moment to 2.29.4 to fix [CVE-2022-31129](https://cve.mitre.org/cgi-bin/cvename.cgi?CVE-2022-31129)
- Display the tag and theme field on the detail view of a project
## v5.4.13 2022 July 27

View File

@ -84,9 +84,15 @@
</div>
<small class="text-xs m-b"><i>{{ 'app.public.projects_show.posted_on_' | translate }} {{project.created_at | amDateFormat: 'LL'}}</i></small>
<div class="m" ng-if="project.themes">
<span ng-repeat="theme in project.themes" class="badge m-r-sm">
{{theme.name}}
</span>
</div>
</div>
<section class="widget panel b-a m" ng-if="project.project_caos_attributes">
<div class="panel-heading b-b">
<span class="badge bg-warning pull-right">{{project.project_caos_attributes.length}}</span>
@ -150,6 +156,15 @@
</div>
</section>
<section class="widget panel b-a m" ng-if="project.tags">
<div class="panel-heading b-b">
<h3 translate>{{ 'app.shared.project.tags' }}</h3>
</div>
<div class="panel-body">
<pre>{{ project.tags }}</pre>
</div>
</section>
<section class="widget b-t">
<div class="widget-content text-center m-t">