Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
web-et-numerique
Factory
Resin
Client
Merge requests
!180
release V1.10.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
release V1.10.0
recette
into
master
Overview
0
Commits
34
Pipelines
0
Changes
37
Merged
Hugo SUBTIL
requested to merge
recette
into
master
3 years ago
Overview
0
Commits
34
Pipelines
0
Changes
37
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
2dad46b7
34 commits,
3 years ago
37 files
+
10775
−
29590
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
37
Search (e.g. *.vue) (Ctrl+P)
src/app/admin/components/structures-list/admin-structures-list.component.html
+
27
−
40
Options
<div
fxLayout=
"column"
fxLayoutAlign=
"center center"
>
<div
fxLayout=
"row"
class=
"selector"
>
<div
fxLayout=
"row"
class=
"checkbox no-width"
>
<div
class=
"checkboxItem"
>
<label>
<input
type=
"checkbox"
[checked]=
"isInClaimStructure"
(change)=
"inClaimStructure($event)"
/>
<span
class=
"customCheck"
></span>
<div
class=
"label pass option"
>
En revendication
</div>
</label>
</div>
<div
class=
"checkboxItem"
>
<label>
<input
type=
"checkbox"
[checked]=
"isClaimedStructure"
(change)=
"claimedStructure($event)"
/>
<span
class=
"customCheck"
></span>
<div
class=
"label pass option"
>
Revendiquées
</div>
</label>
</div>
<div
class=
"checkboxItem"
>
<label>
<input
type=
"checkbox"
[checked]=
"isToClaimStructure"
(change)=
"toClaimStructure($event)"
/>
<span
class=
"customCheck"
></span>
<div
class=
"label pass option"
>
Non revendiquées
</div>
</label>
</div>
<div
class=
"checkboxItem"
>
<label>
<input
type=
"checkbox"
[checked]=
"isAll"
(change)=
"allStructure($event)"
/>
<span
class=
"customCheck"
></span>
<div
class=
"label pass option"
>
Toutes
</div>
</label>
</div>
</div>
</div>
<div
*ngIf=
"!isInClaimStructure && !isToClaimStructure && !isClaimedStructure"
>
Choisir un filtre pour afficher la liste des structures
</div>
<table
*ngIf=
"isInClaimStructure"
aria-describedby=
"demands attachment results"
class=
"results-tab results-column"
>
<div
*ngIf=
"isLoading"
class=
"loader"
>
<img
class=
"loader-gif"
src=
"/assets/gif/loader_circle.gif"
alt
/>
</div>
<div
*ngIf=
"!isLoading"
fxLayout=
"column"
fxLayoutAlign=
"center center"
>
<table
aria-describedby=
"demands attachment results"
class=
"results-tab results-column"
>
<thead>
<th
scope=
"col"
>
Structures avec des données manquantes ({{ structuresIncomplete ? structuresIncomplete.length : 0 }})
</th>
</thead>
<tbody>
<tr
*ngFor=
"let structure of structuresIncomplete"
>
<td>
<a
class=
"incomplete"
href=
"/acteurs?id={{ structure.structureId }}"
target=
"_blank"
>
{{ structure.structureName }}
</a
>
</td>
</tr>
<tr
*ngIf=
"!structuresIncomplete?.length"
>
<td
colspan=
"3"
>
Aucune structure
</td>
</tr>
</tbody>
</table>
<table
aria-describedby=
"demands attachment results"
class=
"results-tab results-column"
>
<thead>
<th
scope=
"col"
>
Structures en cours de revendication ({{ structuresInClaim.length }})
</th>
</thead>
@@ -49,7 +36,7 @@
</tr>
</tbody>
</table>
<table
*ngIf=
"isToClaimStructure"
aria-describedby=
"demands attachment results"
class=
"results-tab results-column"
>
<table
aria-describedby=
"demands attachment results"
class=
"results-tab results-column"
>
<thead>
<th
scope=
"col"
>
Structures à revendiquer ({{ structuresToClaim.length }})
</th>
</thead>
@@ -64,7 +51,7 @@
</tr>
</tbody>
</table>
<table
*ngIf=
"isClaimedStructure"
aria-describedby=
"demands attachment results"
class=
"results-tab results-column"
>
<table
aria-describedby=
"demands attachment results"
class=
"results-tab results-column"
>
<thead>
<th
scope=
"col"
>
Structures revendiquées ({{ structuresClaimed.length }})
</th>
</thead>
@@ -74,7 +61,7 @@
<a
href=
"/acteurs?id={{ structure.structureId }}"
target=
"_blank"
>
{{ structure.structureName }}
</a>
</td>
</tr>
<tr
*ngIf=
"!structures
In
Claim?.length"
>
<tr
*ngIf=
"!structuresClaim
ed
?.length"
>
<td
colspan=
"3"
>
Aucune structure
</td>
</tr>
</tbody>
Loading