parent
f1688e278d
commit
fe4ef58ff7
@ -1,12 +0,0 @@
|
|||||||
<Router AppAssembly="@typeof(App).Assembly">
|
|
||||||
<Found Context="routeData">
|
|
||||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
|
||||||
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
|
||||||
</Found>
|
|
||||||
<NotFound>
|
|
||||||
<PageTitle>Not found</PageTitle>
|
|
||||||
<LayoutView Layout="@typeof(MainLayout)">
|
|
||||||
<p role="alert">Sorry, there's nothing at this address.</p>
|
|
||||||
</LayoutView>
|
|
||||||
</NotFound>
|
|
||||||
</Router>
|
|
@ -1,33 +0,0 @@
|
|||||||
@page "/activities"
|
|
||||||
@using HeartTrack.Models
|
|
||||||
|
|
||||||
<PageTitle>Activities</PageTitle>
|
|
||||||
|
|
||||||
<h1>@Localizer["Title"]</h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
@Localizer["Description"]
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<DataGrid TItem="Activity"
|
|
||||||
Data="@activities"
|
|
||||||
ReadData="@OnReadData"
|
|
||||||
TotalItems="@totalActivity"
|
|
||||||
PageSize="10"
|
|
||||||
ShowPager
|
|
||||||
Responsive>
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.IdActivity)" Caption="Id" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Type)" Caption="Type" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Date)" Caption="Date" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.StartTime)" Caption="@Localizer["StartTime"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.EndTime)" Caption="@Localizer["EndTime"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.EffortRessenti)" Caption="@Localizer["EffortRessenti"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Variability)" Caption="@Localizer["Variability"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Variance)" Caption="@Localizer["Variance"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.StandardDeviation)" Caption="@Localizer["StandardDeviation"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Average)" Caption="@Localizer["Average"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Maximum)" Caption="Maximum" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.Minimum)" Caption="Minimum" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.AvrTemperature)" Caption="@Localizer["AvrTemperature"]" />
|
|
||||||
<DataGridColumn TItem="Activity" Field="@nameof(Activity.HasAutoPause)" Caption="@Localizer["HasAutoPause"]" />
|
|
||||||
</DataGrid>
|
|
@ -1,60 +0,0 @@
|
|||||||
@page "/tickets/add"
|
|
||||||
|
|
||||||
@* <AuthorizeView Context="authContext" Roles="admin">
|
|
||||||
<Authorized > *@
|
|
||||||
<h3>Add Ticket</h3>
|
|
||||||
|
|
||||||
<EditForm Model="@ticketModel" OnValidSubmit="@HandleValidSubmit">
|
|
||||||
<DataAnnotationsValidator />
|
|
||||||
<ValidationSummary />
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<label for="username">
|
|
||||||
Username:
|
|
||||||
<InputText id="username" @bind-Value="ticketModel.Username" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="first-name">
|
|
||||||
First name:
|
|
||||||
<InputText id="first-name" @bind-Value="ticketModel.Nom" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="last-name">
|
|
||||||
Last name:
|
|
||||||
<InputText id="last-name" @bind-Value="ticketModel.Prenom" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="oui">
|
|
||||||
Context:
|
|
||||||
<InputText id="oui" @bind-Value="ticketModel.Contexte" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<label for="description">
|
|
||||||
Description:
|
|
||||||
<InputText id="description" @bind-Value="ticketModel.Description" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<label for="urgence">
|
|
||||||
Urgence:
|
|
||||||
<InputCheckbox id="urgence" @bind-Value="ticketModel.Urgence" />
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<button type="submit">Submit</button>
|
|
||||||
</EditForm>
|
|
||||||
|
|
||||||
@* </Authorized>
|
|
||||||
<Authorizing>
|
|
||||||
<h1>Loading ...</h1>
|
|
||||||
</Authorizing>
|
|
||||||
<NotAuthorized>
|
|
||||||
<h1>Authentication Failure!</h1>
|
|
||||||
<p>You're not signed in.</p>
|
|
||||||
</NotAuthorized>
|
|
||||||
</AuthorizeView> *@
|
|
@ -1,4 +0,0 @@
|
|||||||
@page "/admin-manager"
|
|
||||||
@attribute [Authorize(Roles = "superadmin")]
|
|
||||||
|
|
||||||
<h3>Admin Page</h3>
|
|
@ -1,30 +0,0 @@
|
|||||||
@page "/banned-users"
|
|
||||||
@using HeartTrack.Models
|
|
||||||
|
|
||||||
<PageTitle>Banned Users</PageTitle>
|
|
||||||
|
|
||||||
<h1>Banned Users</h1>
|
|
||||||
|
|
||||||
This is banned users list of this website.
|
|
||||||
<div>
|
|
||||||
<NavLink class="btn btn-primary" href="banned-users/add" Match="NavLinkMatch.All">
|
|
||||||
<i class="fa fa-plus"></i> Ajouter
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
|
||||||
|
|
||||||
<DataGrid TItem="User"
|
|
||||||
Data="@users"
|
|
||||||
ReadData="@OnReadData"
|
|
||||||
TotalItems="@totalUser"
|
|
||||||
PageSize="10"
|
|
||||||
ShowPager
|
|
||||||
Responsive>
|
|
||||||
<DataGridColumn TItem="User" Field="@nameof(User.Id)" Caption="Id" />
|
|
||||||
<DataGridColumn TItem="User" Field="@nameof(User.Username)" Caption="@Localizer["Username"]" />
|
|
||||||
<DataGridColumn TItem="User" Field="@nameof(User.Nom)" Caption="@Localizer["FirstN"]" />
|
|
||||||
<DataGridColumn TItem="User" Field="@nameof(User.Prenom)" Caption="@Localizer["LastN"]" />
|
|
||||||
<DataGridColumn Caption="" />
|
|
||||||
</DataGrid>
|
|
||||||
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
|||||||
@page
|
|
||||||
@model HeartTrack.Pages.ErrorModel
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
||||||
<title>Error</title>
|
|
||||||
<link href="~/css/bootstrap/bootstrap.min.css" rel="stylesheet" />
|
|
||||||
<link href="~/css/site.css" rel="stylesheet" asp-append-version="true" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="main">
|
|
||||||
<div class="content px-4">
|
|
||||||
<h1 class="text-danger">Error.</h1>
|
|
||||||
<h2 class="text-danger">An error occurred while processing your request.</h2>
|
|
||||||
|
|
||||||
@if (Model.ShowRequestId)
|
|
||||||
{
|
|
||||||
<p>
|
|
||||||
<strong>Request ID:</strong> <code>@Model.RequestId</code>
|
|
||||||
</p>
|
|
||||||
}
|
|
||||||
|
|
||||||
<h3>Development Mode</h3>
|
|
||||||
<p>
|
|
||||||
Swapping to the <strong>Development</strong> environment displays detailed information about the error that occurred.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
|
|
||||||
It can result in displaying sensitive information from exceptions to end users.
|
|
||||||
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
|
|
||||||
and restarting the app.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
|||||||
@page "/"
|
|
||||||
@using System.Globalization
|
|
||||||
|
|
||||||
<PageTitle>Global View</PageTitle>
|
|
||||||
|
|
||||||
<h1>Global View</h1>
|
|
||||||
|
|
||||||
This is the global statistics of our website.
|
|
||||||
|
|
||||||
Actual language:
|
|
||||||
<p>
|
|
||||||
<b>CurrentCulture</b>: @CultureInfo.CurrentCulture
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<SurveyPrompt Title="How is Blazor working for you?" />
|
|
@ -1,22 +0,0 @@
|
|||||||
@page "/reports"
|
|
||||||
@using HeartTrack.Models
|
|
||||||
|
|
||||||
<PageTitle>Reports</PageTitle>
|
|
||||||
|
|
||||||
<h1>Report list</h1>
|
|
||||||
|
|
||||||
This is the report list of users.
|
|
||||||
|
|
||||||
<DataGrid TItem="Report"
|
|
||||||
Data="@reports"
|
|
||||||
ReadData="@OnReadData"
|
|
||||||
TotalItems="@totalReport"
|
|
||||||
PageSize="10"
|
|
||||||
ShowPager
|
|
||||||
Responsive>
|
|
||||||
<DataGridColumn TItem="Report" Field="@nameof(Report.Id)" Caption="Id" />
|
|
||||||
<DataGridColumn TItem="Report" Field="@nameof(Report.Username)" Caption="@Localizer["Username"]" />
|
|
||||||
<DataGridColumn TItem="Report" Field="@nameof(Report.Raison)" Caption="@Localizer["Raison"]" />
|
|
||||||
<DataGridColumn TItem="Report" Field="@nameof(Report.Description)" Caption="@Localizer["Description"]" />
|
|
||||||
<DataGridColumn Caption="" />
|
|
||||||
</DataGrid>
|
|
@ -1,20 +0,0 @@
|
|||||||
@page "/test"
|
|
||||||
<div class="text-center bg-blue-100">
|
|
||||||
<input class="border-4 w-1/3 rounded m-6 p-6 h-8
|
|
||||||
border-blue-300" @bind-value="SearchText"
|
|
||||||
@bind-value:event="oninput" placeholder="Search by title" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@if (!Users.Any())
|
|
||||||
{
|
|
||||||
<p>Loading some images...</p>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<div class="p-2 grid grid-cols-1 sm:grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-3">
|
|
||||||
@foreach (var user in FilteredUsers)
|
|
||||||
{
|
|
||||||
<p>feur</p>
|
|
||||||
}
|
|
||||||
</div>
|
|
||||||
}
|
|
@ -1,39 +0,0 @@
|
|||||||
@page "/tickets"
|
|
||||||
|
|
||||||
<PageTitle>Tickets</PageTitle>
|
|
||||||
|
|
||||||
<h1>Tickets list</h1>
|
|
||||||
|
|
||||||
This is the ticket list of users.
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<NavLink class="btn btn-primary" href="tickets/add" Match="NavLinkMatch.All">
|
|
||||||
<i class="fa fa-plus"></i> Ajouter
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
@* <DataGrid TItem="Tickets"
|
|
||||||
Data="@ticket"
|
|
||||||
PageSize="int.MaxValue"
|
|
||||||
Responsive>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Id)" Caption="#" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Username)" Caption="Display name" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Nom)" Caption="Stack size" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Prenom)" Caption="Maximum durability" />
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Contexte)" Caption="Enchant categories"/>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Description)" Caption="Enchant categories"/>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.Urgence)" Caption="Enchant categories"/>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.isCheck)" Caption="" />
|
|
||||||
<DataGridColumn TItem="Item" Field="" Caption="Check" />
|
|
||||||
<DisplayTemplate>
|
|
||||||
@(string.Join(", ", ((Item)context).EnchantCategories))
|
|
||||||
</DisplayTemplate>
|
|
||||||
</DataGridColumn>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.RepairWith)" Caption="Repair with">
|
|
||||||
<DisplayTemplate>
|
|
||||||
@(string.Join(", ", ((Item)context).RepairWith))
|
|
||||||
</DisplayTemplate>
|
|
||||||
</DataGridColumn>
|
|
||||||
<DataGridColumn TItem="Item" Field="@nameof(Item.CreatedDate)" Caption="Created date" DisplayFormat="{0:d}" DisplayFormatProvider="@System.Globalization.CultureInfo.GetCultureInfo("fr-FR")" />
|
|
||||||
</DataGrid> *@
|
|
@ -1,9 +0,0 @@
|
|||||||
@page "/"
|
|
||||||
@namespace HeartTrack.Pages
|
|
||||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
|
||||||
@{
|
|
||||||
Layout = "_Layout";
|
|
||||||
}
|
|
||||||
|
|
||||||
<component type="typeof(App)" render-mode="ServerPrerendered" />
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
|||||||
@using Microsoft.AspNetCore.Components.Web
|
|
||||||
@namespace HeartTrack.Pages
|
|
||||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<base href="~/" />
|
|
||||||
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
|
|
||||||
<link href="css/site.css" rel="stylesheet" />
|
|
||||||
<link href="HeartTrack.styles.css" rel="stylesheet" />
|
|
||||||
<component type="typeof(HeadOutlet)" render-mode="ServerPrerendered" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
@RenderBody()
|
|
||||||
|
|
||||||
<div id="blazor-error-ui">
|
|
||||||
<environment include="Staging,Production">
|
|
||||||
An error has occurred. This application may no longer respond until reloaded.
|
|
||||||
</environment>
|
|
||||||
<environment include="Development">
|
|
||||||
An unhandled exception has occurred. See browser dev tools for details.
|
|
||||||
</environment>
|
|
||||||
<a href="" class="reload">Reload</a>
|
|
||||||
<a class="dismiss">🗙</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script src="_framework/blazor.server.js"></script>
|
|
||||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css">
|
|
||||||
|
|
||||||
<link href="_content/Blazorise/blazorise.css" rel="stylesheet" />
|
|
||||||
<link href="_content/Blazorise.Bootstrap/blazorise.bootstrap.css" rel="stylesheet" />
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
|||||||
{
|
|
||||||
"iisSettings": {
|
|
||||||
"windowsAuthentication": false,
|
|
||||||
"anonymousAuthentication": true,
|
|
||||||
"iisExpress": {
|
|
||||||
"applicationUrl": "http://localhost:7346",
|
|
||||||
"sslPort": 44333
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"profiles": {
|
|
||||||
"HeartTrack": {
|
|
||||||
"commandName": "Project",
|
|
||||||
"launchBrowser": true,
|
|
||||||
"applicationUrl": "https://localhost:7180;http://localhost:5176",
|
|
||||||
"environmentVariables": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
},
|
|
||||||
"dotnetRunMessages": true
|
|
||||||
},
|
|
||||||
"IIS Express": {
|
|
||||||
"commandName": "IISExpress",
|
|
||||||
"launchBrowser": true,
|
|
||||||
"environmentVariables": {
|
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,150 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<data name="Title" xml:space="preserve">
|
|
||||||
<value>List d'activités</value>
|
|
||||||
</data>
|
|
||||||
<data name="Description" xml:space="preserve">
|
|
||||||
<value>This is t.</value>
|
|
||||||
</data>
|
|
||||||
<data name="StartTime" xml:space="preserve">
|
|
||||||
<value>helle</value>
|
|
||||||
</data>
|
|
||||||
<data name="EndTime" xml:space="preserve">
|
|
||||||
<value>Last e</value>
|
|
||||||
</data>
|
|
||||||
<data name="EffortRessenti" xml:space="preserve">
|
|
||||||
<value>Efforressenti</value>
|
|
||||||
</data>
|
|
||||||
<data name="Variability" xml:space="preserve">
|
|
||||||
<value>Variablity</value>
|
|
||||||
</data>
|
|
||||||
<data name="StandardDeviation" xml:space="preserve">
|
|
||||||
<value>Standard deviation</value>
|
|
||||||
</data>
|
|
||||||
<data name="Average" xml:space="preserve">
|
|
||||||
<value>Average</value>
|
|
||||||
</data>
|
|
||||||
<data name="AvrTemperature" xml:space="preserve">
|
|
||||||
<value>Average temperature</value>
|
|
||||||
</data>
|
|
||||||
<data name="HasAutoPause" xml:space="preserve">
|
|
||||||
<value>Has auto pause</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
|
@ -1,150 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<data name="Title" xml:space="preserve">
|
|
||||||
<value>Activities List</value>
|
|
||||||
</data>
|
|
||||||
<data name="Description" xml:space="preserve">
|
|
||||||
<value>This is the activity list of users.</value>
|
|
||||||
</data>
|
|
||||||
<data name="StartTime" xml:space="preserve">
|
|
||||||
<value>First name</value>
|
|
||||||
</data>
|
|
||||||
<data name="EndTime" xml:space="preserve">
|
|
||||||
<value>Last name</value>
|
|
||||||
</data>
|
|
||||||
<data name="EffortRessenti" xml:space="preserve">
|
|
||||||
<value>Effort ressenti</value>
|
|
||||||
</data>
|
|
||||||
<data name="Variability" xml:space="preserve">
|
|
||||||
<value>Variability</value>
|
|
||||||
</data>
|
|
||||||
<data name="StandardDeviation" xml:space="preserve">
|
|
||||||
<value>Standard deviation</value>
|
|
||||||
</data>
|
|
||||||
<data name="Average" xml:space="preserve">
|
|
||||||
<value>Average</value>
|
|
||||||
</data>
|
|
||||||
<data name="AvrTemperature" xml:space="preserve">
|
|
||||||
<value>Average temperature</value>
|
|
||||||
</data>
|
|
||||||
<data name="HasAutoPause" xml:space="preserve">
|
|
||||||
<value>Has auto pause</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
|
@ -1,138 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<data name="Description" xml:space="preserve">
|
|
||||||
<value>Cette page regroupe la liste des jetons (nom utilisateur et le mot de passe) du site.</value>
|
|
||||||
</data>
|
|
||||||
<data name="FirstN" xml:space="preserve">
|
|
||||||
<value>Nom de famille</value>
|
|
||||||
</data>
|
|
||||||
<data name="LastN" xml:space="preserve">
|
|
||||||
<value>Prénom</value>
|
|
||||||
</data>
|
|
||||||
<data name="Password" xml:space="preserve">
|
|
||||||
<value>Mot de passe</value>
|
|
||||||
</data>
|
|
||||||
<data name="Title" xml:space="preserve">
|
|
||||||
<value>Jetons utilisateurs</value>
|
|
||||||
</data>
|
|
||||||
<data name="Username" xml:space="preserve">
|
|
||||||
<value>Nom d'utilisateur</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
|
@ -1,138 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<data name="Description" xml:space="preserve">
|
|
||||||
<value>This is the token list of users.</value>
|
|
||||||
</data>
|
|
||||||
<data name="FirstN" xml:space="preserve">
|
|
||||||
<value>First name</value>
|
|
||||||
</data>
|
|
||||||
<data name="LastN" xml:space="preserve">
|
|
||||||
<value>Last name</value>
|
|
||||||
</data>
|
|
||||||
<data name="Password" xml:space="preserve">
|
|
||||||
<value>Password</value>
|
|
||||||
</data>
|
|
||||||
<data name="Title" xml:space="preserve">
|
|
||||||
<value>User token</value>
|
|
||||||
</data>
|
|
||||||
<data name="Username" xml:space="preserve">
|
|
||||||
<value>Username</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
|
@ -1,141 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<data name="Activity" xml:space="preserve">
|
|
||||||
<value>Activité</value>
|
|
||||||
</data>
|
|
||||||
<data name="Admin" xml:space="preserve">
|
|
||||||
<value>Gérer les admins</value>
|
|
||||||
</data>
|
|
||||||
<data name="Ban" xml:space="preserve">
|
|
||||||
<value>Utilisateurs bannis</value>
|
|
||||||
</data>
|
|
||||||
<data name="Global" xml:space="preserve">
|
|
||||||
<value>Vue d'ensemble</value>
|
|
||||||
</data>
|
|
||||||
<data name="Report" xml:space="preserve">
|
|
||||||
<value>Signalement</value>
|
|
||||||
</data>
|
|
||||||
<data name="Ticket" xml:space="preserve">
|
|
||||||
<value>Ticket utilisateur</value>
|
|
||||||
</data>
|
|
||||||
<data name="Token" xml:space="preserve">
|
|
||||||
<value>Jetons d'utilisateurs</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
|
@ -1,141 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<root>
|
|
||||||
<!--
|
|
||||||
Microsoft ResX Schema
|
|
||||||
|
|
||||||
Version 2.0
|
|
||||||
|
|
||||||
The primary goals of this format is to allow a simple XML format
|
|
||||||
that is mostly human readable. The generation and parsing of the
|
|
||||||
various data types are done through the TypeConverter classes
|
|
||||||
associated with the data types.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
... ado.net/XML headers & schema ...
|
|
||||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
|
||||||
<resheader name="version">2.0</resheader>
|
|
||||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
|
||||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
|
||||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
|
||||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
|
||||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
|
||||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
|
||||||
</data>
|
|
||||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
|
||||||
<comment>This is a comment</comment>
|
|
||||||
</data>
|
|
||||||
|
|
||||||
There are any number of "resheader" rows that contain simple
|
|
||||||
name/value pairs.
|
|
||||||
|
|
||||||
Each data row contains a name, and value. The row also contains a
|
|
||||||
type or mimetype. Type corresponds to a .NET class that support
|
|
||||||
text/value conversion through the TypeConverter architecture.
|
|
||||||
Classes that don't support this are serialized and stored with the
|
|
||||||
mimetype set.
|
|
||||||
|
|
||||||
The mimetype is used for serialized objects, and tells the
|
|
||||||
ResXResourceReader how to depersist the object. This is currently not
|
|
||||||
extensible. For a given mimetype the value must be set accordingly:
|
|
||||||
|
|
||||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
|
||||||
that the ResXResourceWriter will generate, however the reader can
|
|
||||||
read any of the formats listed below.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.binary.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.soap.base64
|
|
||||||
value : The object must be serialized with
|
|
||||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
|
|
||||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
|
||||||
value : The object must be serialized into a byte array
|
|
||||||
: using a System.ComponentModel.TypeConverter
|
|
||||||
: and then encoded with base64 encoding.
|
|
||||||
-->
|
|
||||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
|
||||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
|
||||||
<xsd:element name="root" msdata:IsDataSet="true">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:choice maxOccurs="unbounded">
|
|
||||||
<xsd:element name="metadata">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="assembly">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:attribute name="alias" type="xsd:string" />
|
|
||||||
<xsd:attribute name="name" type="xsd:string" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="data">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
|
||||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
|
||||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
|
||||||
<xsd:attribute ref="xml:space" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
<xsd:element name="resheader">
|
|
||||||
<xsd:complexType>
|
|
||||||
<xsd:sequence>
|
|
||||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
|
||||||
</xsd:sequence>
|
|
||||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:choice>
|
|
||||||
</xsd:complexType>
|
|
||||||
</xsd:element>
|
|
||||||
</xsd:schema>
|
|
||||||
<resheader name="resmimetype">
|
|
||||||
<value>text/microsoft-resx</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="version">
|
|
||||||
<value>2.0</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="reader">
|
|
||||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<resheader name="writer">
|
|
||||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</resheader>
|
|
||||||
<data name="Activity" xml:space="preserve">
|
|
||||||
<value>Activities</value>
|
|
||||||
</data>
|
|
||||||
<data name="Admin" xml:space="preserve">
|
|
||||||
<value>Admin managment</value>
|
|
||||||
</data>
|
|
||||||
<data name="Ban" xml:space="preserve">
|
|
||||||
<value>Ban users</value>
|
|
||||||
</data>
|
|
||||||
<data name="Global" xml:space="preserve">
|
|
||||||
<value>Global view</value>
|
|
||||||
</data>
|
|
||||||
<data name="Report" xml:space="preserve">
|
|
||||||
<value>Reports</value>
|
|
||||||
</data>
|
|
||||||
<data name="Ticket" xml:space="preserve">
|
|
||||||
<value>Tickets</value>
|
|
||||||
</data>
|
|
||||||
<data name="Token" xml:space="preserve">
|
|
||||||
<value>Tokens</value>
|
|
||||||
</data>
|
|
||||||
</root>
|
|
@ -1,42 +0,0 @@
|
|||||||
@using System.Globalization
|
|
||||||
@inject NavigationManager NavigationManager
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<label>
|
|
||||||
<select @bind="Culture">
|
|
||||||
@foreach (var culture in supportedCultures)
|
|
||||||
{
|
|
||||||
<option value="@culture">@culture.DisplayName</option>
|
|
||||||
}
|
|
||||||
</select>
|
|
||||||
</label>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
@code
|
|
||||||
{
|
|
||||||
private CultureInfo[] supportedCultures = new[]
|
|
||||||
{
|
|
||||||
new CultureInfo("en-US"),
|
|
||||||
new CultureInfo("fr-FR")
|
|
||||||
};
|
|
||||||
|
|
||||||
private CultureInfo Culture
|
|
||||||
{
|
|
||||||
get => CultureInfo.CurrentCulture;
|
|
||||||
set
|
|
||||||
{
|
|
||||||
if (CultureInfo.CurrentUICulture == value)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var culture = value.Name.ToLower(CultureInfo.InvariantCulture);
|
|
||||||
|
|
||||||
var uri = new Uri(this.NavigationManager.Uri).GetComponents(UriComponents.PathAndQuery, UriFormat.Unescaped);
|
|
||||||
var query = $"?culture={Uri.EscapeDataString(culture)}&" + $"redirectUri={Uri.EscapeDataString(uri)}";
|
|
||||||
|
|
||||||
// Redirect the user to the culture controller to set the cookie
|
|
||||||
this.NavigationManager.NavigateTo("/Culture/SetCulture" + query, forceLoad: true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,39 +0,0 @@
|
|||||||
@inherits LayoutComponentBase
|
|
||||||
|
|
||||||
<PageTitle>HeartTrack</PageTitle>
|
|
||||||
|
|
||||||
<div class="page">
|
|
||||||
<div class="sidebar @NavMenuCssClass" @onclick="ToggleNavMenu">
|
|
||||||
<NavMenu />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<div class="top-row px-4 auth">
|
|
||||||
<div class="container-fluid toggler-container">
|
|
||||||
<button title="Navigation menu" class="navbar-toggler custom-toggler" @onclick="ToggleNavMenu">
|
|
||||||
<span class="navbat-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
@* Messages, notifs et pp compte à mettre *@
|
|
||||||
@* <div class="top-row px-4">
|
|
||||||
<CultureSelector />
|
|
||||||
<button type="button" class="btn btn-link ml-md-auto" @onclick="@LogoutClick">Logout</button>
|
|
||||||
</div> *@
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<article class="content px-4">
|
|
||||||
@Body
|
|
||||||
</article>
|
|
||||||
</main>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@code {
|
|
||||||
private bool collapseNavMenu = true;
|
|
||||||
|
|
||||||
private string? NavMenuCssClass => collapseNavMenu ? "collapse" : null;
|
|
||||||
|
|
||||||
private void ToggleNavMenu()
|
|
||||||
{
|
|
||||||
collapseNavMenu = !collapseNavMenu;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,50 +0,0 @@
|
|||||||
<div class="top-row ps-3 navbar navbar-dark">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<a class="navbar-brand" href="">@Localizer["Panel"]</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
|
||||||
<nav class="flex-column">
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="" Match="NavLinkMatch.All">
|
|
||||||
<span class="oi oi-home" aria-hidden="true"></span> @Localizer["Global"]
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
@* <AuthorizeView Roles="admin"> *@
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="reports">
|
|
||||||
<span class="oi oi-list-rich" aria-hidden="true"></span> @Localizer["Report"]
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
@* </AuthorizeView>
|
|
||||||
<AuthorizeView Roles="admin"> *@
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="activities">
|
|
||||||
<span class="oi oi-list-rich" aria-hidden="true"></span> @Localizer["Activity"]
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
@* </AuthorizeView>
|
|
||||||
<AuthorizeView Roles="admin"> *@
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="banned-users">
|
|
||||||
<span class="oi oi-list-rich" aria-hidden="true"></span> @Localizer["Ban"]
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
@* </AuthorizeView>
|
|
||||||
<AuthorizeView Roles="admin"> *@
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="tickets">
|
|
||||||
<span class="oi oi-plus" aria-hidden="true"></span> @Localizer["Ticket"]
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
@* </AuthorizeView>
|
|
||||||
<AuthorizeView Roles="owner"> *@
|
|
||||||
<div class="nav-item px-3">
|
|
||||||
<NavLink class="nav-link" href="admin">
|
|
||||||
<span class="oi oi-plus" aria-hidden="true"></span> @Localizer["Admin"]
|
|
||||||
</NavLink>
|
|
||||||
</div>
|
|
||||||
@* </AuthorizeView> *@
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
@ -1,17 +0,0 @@
|
|||||||
<div class="alert alert-secondary mt-4">
|
|
||||||
<span class="oi oi-pencil me-2" aria-hidden="true"></span>
|
|
||||||
<strong>@Title</strong>
|
|
||||||
|
|
||||||
<span class="text-nowrap">
|
|
||||||
Please take our
|
|
||||||
<a target="_blank" class="font-weight-bold link-dark" href="https://go.microsoft.com/fwlink/?linkid=2149017">brief survey</a>
|
|
||||||
</span>
|
|
||||||
and tell us what you think.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@code {
|
|
||||||
// Demonstrates how a parent component can supply parameters
|
|
||||||
[Parameter]
|
|
||||||
public string? Title { get; set; }
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
|||||||
@using System.Net.Http
|
|
||||||
@using Microsoft.AspNetCore.Authorization
|
|
||||||
@using Microsoft.AspNetCore.Components.Authorization
|
|
||||||
@using Microsoft.AspNetCore.Components.Forms
|
|
||||||
@using Microsoft.AspNetCore.Components.Routing
|
|
||||||
@using Microsoft.AspNetCore.Components.Web
|
|
||||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
|
||||||
@using Microsoft.JSInterop
|
|
||||||
@using HeartTrack
|
|
||||||
@using HeartTrack.Shared
|
|
||||||
@using Blazorise.DataGrid
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,87 +0,0 @@
|
|||||||
SIL OPEN FONT LICENSE Version 1.1
|
|
||||||
|
|
||||||
Copyright (c) 2014 Waybury
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2014 Waybury
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
@ -1,115 +0,0 @@
|
|||||||
[Open Iconic v1.1.1](https://github.com/iconic/open-iconic)
|
|
||||||
===========
|
|
||||||
|
|
||||||
### Open Iconic is the open source sibling of [Iconic](https://github.com/iconic/open-iconic). It is a hyper-legible collection of 223 icons with a tiny footprint—ready to use with Bootstrap and Foundation. [View the collection](https://github.com/iconic/open-iconic)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## What's in Open Iconic?
|
|
||||||
|
|
||||||
* 223 icons designed to be legible down to 8 pixels
|
|
||||||
* Super-light SVG files - 61.8 for the entire set
|
|
||||||
* SVG sprite—the modern replacement for icon fonts
|
|
||||||
* Webfont (EOT, OTF, SVG, TTF, WOFF), PNG and WebP formats
|
|
||||||
* Webfont stylesheets (including versions for Bootstrap and Foundation) in CSS, LESS, SCSS and Stylus formats
|
|
||||||
* PNG and WebP raster images in 8px, 16px, 24px, 32px, 48px and 64px.
|
|
||||||
|
|
||||||
|
|
||||||
## Getting Started
|
|
||||||
|
|
||||||
#### For code samples and everything else you need to get started with Open Iconic, check out our [Icons](https://github.com/iconic/open-iconic) and [Reference](https://github.com/iconic/open-iconic) sections.
|
|
||||||
|
|
||||||
### General Usage
|
|
||||||
|
|
||||||
#### Using Open Iconic's SVGs
|
|
||||||
|
|
||||||
We like SVGs and we think they're the way to display icons on the web. Since Open Iconic are just basic SVGs, we suggest you display them like you would any other image (don't forget the `alt` attribute).
|
|
||||||
|
|
||||||
```
|
|
||||||
<img src="/open-iconic/svg/icon-name.svg" alt="icon name">
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Using Open Iconic's SVG Sprite
|
|
||||||
|
|
||||||
Open Iconic also comes in a SVG sprite which allows you to display all the icons in the set with a single request. It's like an icon font, without being a hack.
|
|
||||||
|
|
||||||
Adding an icon from an SVG sprite is a little different than what you're used to, but it's still a piece of cake. *Tip: To make your icons easily style able, we suggest adding a general class to the* `<svg>` *tag and a unique class name for each different icon in the* `<use>` *tag.*
|
|
||||||
|
|
||||||
```
|
|
||||||
<svg class="icon">
|
|
||||||
<use xlink:href="open-iconic.svg#account-login" class="icon-account-login"></use>
|
|
||||||
</svg>
|
|
||||||
```
|
|
||||||
|
|
||||||
Sizing icons only needs basic CSS. All the icons are in a square format, so just set the `<svg>` tag with equal width and height dimensions.
|
|
||||||
|
|
||||||
```
|
|
||||||
.icon {
|
|
||||||
width: 16px;
|
|
||||||
height: 16px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
Coloring icons is even easier. All you need to do is set the `fill` rule on the `<use>` tag.
|
|
||||||
|
|
||||||
```
|
|
||||||
.icon-account-login {
|
|
||||||
fill: #f00;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
To learn more about SVG Sprites, read [Chris Coyier's guide](http://css-tricks.com/svg-sprites-use-better-icon-fonts/).
|
|
||||||
|
|
||||||
#### Using Open Iconic's Icon Font...
|
|
||||||
|
|
||||||
|
|
||||||
##### …with Bootstrap
|
|
||||||
|
|
||||||
You can find our Bootstrap stylesheets in `font/css/open-iconic-bootstrap.{css, less, scss, styl}`
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
<link href="/open-iconic/font/css/open-iconic-bootstrap.css" rel="stylesheet">
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
<span class="oi oi-icon-name" title="icon name" aria-hidden="true"></span>
|
|
||||||
```
|
|
||||||
|
|
||||||
##### …with Foundation
|
|
||||||
|
|
||||||
You can find our Foundation stylesheets in `font/css/open-iconic-foundation.{css, less, scss, styl}`
|
|
||||||
|
|
||||||
```
|
|
||||||
<link href="/open-iconic/font/css/open-iconic-foundation.css" rel="stylesheet">
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
<span class="fi-icon-name" title="icon name" aria-hidden="true"></span>
|
|
||||||
```
|
|
||||||
|
|
||||||
##### …on its own
|
|
||||||
|
|
||||||
You can find our default stylesheets in `font/css/open-iconic.{css, less, scss, styl}`
|
|
||||||
|
|
||||||
```
|
|
||||||
<link href="/open-iconic/font/css/open-iconic.css" rel="stylesheet">
|
|
||||||
```
|
|
||||||
|
|
||||||
```
|
|
||||||
<span class="oi" data-glyph="icon-name" title="icon name" aria-hidden="true"></span>
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
### Icons
|
|
||||||
|
|
||||||
All code (including SVG markup) is under the [MIT License](http://opensource.org/licenses/MIT).
|
|
||||||
|
|
||||||
### Fonts
|
|
||||||
|
|
||||||
All fonts are under the [SIL Licensed](http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web).
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,379 +0,0 @@
|
|||||||
[
|
|
||||||
{
|
|
||||||
"id": 1,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2018-12-27",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 2,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2021-06-29",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 3,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2021-04-09",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 4,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2022-11-20",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 5,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2021-02-20",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 6,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2014-02-17",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 7,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2020-07-14",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 8,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2018-02-21",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 9,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2014-07-31",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 10,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2019-10-02",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 11,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2015-07-26",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 12,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2020-10-23",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 13,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2014-11-03",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 14,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2014-01-31",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 15,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2022-04-12",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 16,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2018-07-22",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 17,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2017-04-04",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 18,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2015-08-15",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 19,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2022-04-10",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 20,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2020-02-09",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 21,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2017-02-18",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 22,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2023-06-25",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 23,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2017-09-27",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 24,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2015-02-01",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 25,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2017-05-28",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 26,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2022-06-11",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 27,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2019-08-08",
|
|
||||||
"isban": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 28,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2015-01-29",
|
|
||||||
"isban": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": 29,
|
|
||||||
"username": "johndoe",
|
|
||||||
"nom": "Doe",
|
|
||||||
"prenom": "John",
|
|
||||||
"email": "john.doe@example.com",
|
|
||||||
"password": "password123",
|
|
||||||
"sexe": "male",
|
|
||||||
"taille": 1.76,
|
|
||||||
"poids": 56.3,
|
|
||||||
"birthdate": "2020-08-21",
|
|
||||||
"isban": false
|
|
||||||
}
|
|
||||||
]
|
|
Before Width: | Height: | Size: 5.3 KiB |
Loading…
Reference in new issue