Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
db-import
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lib
unicaen
db-import
Commits
8f008b83
Commit
8f008b83
authored
Dec 8, 2021
by
Bertrand Gauthier
Browse files
Options
Downloads
Patches
Plain Diff
Cosmétique
parent
c405cd32
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
view/unicaen-db-import/log/voir.phtml
+1
-1
1 addition, 1 deletion
view/unicaen-db-import/log/voir.phtml
view/unicaen-db-import/partial/log-dl.phtml
+2
-2
2 additions, 2 deletions
view/unicaen-db-import/partial/log-dl.phtml
with
3 additions
and
3 deletions
view/unicaen-db-import/log/voir.phtml
+
1
−
1
View file @
8f008b83
...
...
@@ -16,7 +16,7 @@ $this->headTitle($this->translate("Log") . ' ' . $importLog->getId());
<?php
echo
$this
->
messenger
()
->
addMessagesFromFlashMessengerWithNoNamespace
();
?>
<div
class=
"row"
>
<div
class=
"col-md-
5
"
>
<div
class=
"col-md-
6
"
>
<?php
echo
$this
->
partial
(
'unicaen-db-import/partial/log-dl'
,
[
'importLog'
=>
$importLog
])
?>
</div>
</div>
This diff is collapsed.
Click to expand it.
view/unicaen-db-import/partial/log-dl.phtml
+
2
−
2
View file @
8f008b83
...
...
@@ -13,10 +13,10 @@
<dd
class=
"col-md-7"
>
<?php
echo
$importLog
->
getName
();
?>
</dd>
<dt
class=
"col-md-3"
>
Succès ?
</dt>
<dd
class=
"col-md-7"
><span
class=
"fas
<?php
echo
$importLog
->
isSuccess
()
?
'fa-thumbs-up text-success'
:
'fa-thumbs-down text-danger'
?>
"
></span></dd>
<dt
class=
"col-md-3"
>
Log
</dt>
<dd
class=
"col-md-7"
>
<?php
echo
str_replace
(
PHP_EOL
,
'<br>'
,
$importLog
->
getLog
());
?>
</dd>
<dt
class=
"col-md-3"
>
Commencé le
</dt>
<dd
class=
"col-md-7"
>
<?php
echo
$importLog
->
getStartedOnToString
()
;
?>
</dd>
<dt
class=
"col-md-3"
>
Terminé le
</dt>
<dd
class=
"col-md-7"
>
<?php
echo
$importLog
->
getEndedOnToString
()
;
?>
</dd>
<dt
class=
"col-md-3"
>
Log
</dt>
<dd
class=
"col-md-7"
><pre>
<?php
echo
$importLog
->
getLog
()
?>
</dd>
</dl>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment