Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sg_routes
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
TYPO3
sg_routes
Merge requests
!19
Release 5.0.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Release 5.0.0
release_5.0.0
into
master
Overview
0
Commits
9
Changes
1
Merged
Georgi
requested to merge
release_5.0.0
into
master
3 years ago
Overview
0
Commits
9
Changes
1
Expand
0
0
Merge request reports
Viewing commit
78553ccd
Prev
Next
Show latest version
1 file
+
8
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
78553ccd
[BUGFIX] Fixed missing key message
· 78553ccd
Georgi Mateev
authored
3 years ago
Resources/Private/Backend/Templates/Route/List.html
+
36
−
47
Options
@@ -226,57 +226,46 @@
</span>
</be:link.editRecord>
</td>
<f:if
condition=
"{route.crdate} != 0"
>
<f:then>
<td>
<f:translate
key=
"backend.crdate"
/>
:
<f:format.date
format=
"d.m.Y - H:i:s"
>
{route.crdate}
</f:format.date>
</td>
</f:then>
<f:else>
<f:comment>
<!--Output the tstamp here, in case we don't have a crdate for this record
(this is possible for older records, that were created before the bugfix was implemented,
which fixed the missing crdate when creating a new record).-->
</f:comment>
<td>
<f:translate
key=
"backend.crdate"
/>
:
<f:format.date
format=
"d.m.Y - H:i:s"
>
{route.tstamp}
</f:format.date>
</td>
</f:else>
</f:if>
<f:if
condition=
"{route.lastHit} != 0"
>
<f:then>
<td>
<f:translate
key=
"backend.last_hit"
/>
:
<td>
<f:comment>
<!--Output the tstamp here, in case we don't have a crdate for this record
(this is possible for older records, that were created before the bugfix was implemented,
which fixed the missing crdate when creating a new record).-->
</f:comment>
{f:translate(key: "backend.crdate")}:
<f:format.date
format=
"d.m.Y - H:i:s"
>
<f:if
condition=
"{route.crdate} != 0"
>
<f:then>
{route.crdate}
</f:then>
<f:else>
{route.tstamp}
</f:else>
</f:if>
</f:format.date>
<br>
{f:translate(key: "backend.last_hit")}:
<f:if
condition=
"{route.lastHit} != 0"
>
<f:then>
<f:format.date
format=
"d.m.Y - H:i:s"
>
{route.lastHit}
</f:format.date>
</td>
</f:then>
<f:else>
<td>
<f:translate
key=
"backend.last_hit"
/>
: -
</td>
</f:else>
</f:if>
<f:if
condition=
"{route.hits} == 1"
>
<f:then>
<td>
{route.hits}
</f:then>
<f:else>
-
</f:else>
</f:if>
<br>
{route.hits}
<f:if
condition=
"{route.hits} == 1"
>
<f:then>
<f:translate
key=
"backend.hit"
/>
</td>
</f:then>
<f:else>
<td>
{route.hits}
</f:then>
<f:else>
<f:translate
key=
"backend.hits"
/>
</td>
</f:else>
</f:if>
</f:else>
</f:if>
</td>
<td>
<f:variable
name=
"confirmText"
value=
"{f:translate(key: 'backend.reset_hits.confirm')}"
/>
Loading