Skip to content

Commit

Permalink
Add last modification date to user meta component of user detail
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Mátyus authored and rootpd committed Apr 20, 2023
1 parent 5cf95fe commit 72f3ebe
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Components/UserMeta/user_meta.latte
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<th>{_users.component.user_meta.key}</th>
<th>{_users.component.user_meta.value}</th>
<th>{_users.component.user_meta.created_at}</th>
<th>{_users.component.user_meta.modified_at}</th>
<th>{_users.component.user_meta.actions}</th>
</tr>
</thead>
Expand All @@ -21,6 +22,7 @@
</td>
<td>{$row->value}</td>
<td class="text-muted">{$row->created_at}</td>
<td class="text-muted">{$row->updated_at}</td>
<td><a n:href="delete! $id, $row->key" class="btn btn-danger"><i class="fa fa-trash"></i></a></td>
</tr>
</tbody>
Expand Down
1 change: 1 addition & 0 deletions src/lang/users.cs_CZ.yml
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,7 @@ component:
key: Klíč
value: Hodnota
created_at: Vytvořeno
modified_at: Upraveno
actions: Akce
public: Veřejné

Expand Down
1 change: 1 addition & 0 deletions src/lang/users.de_DE.yml
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,7 @@ component:
key: Schüssel
value: Wert
created_at: Angelegt am
modified_at: Aktualisiert am
actions: Aktionen
public: Öffentlich

Expand Down
1 change: 1 addition & 0 deletions src/lang/users.en_US.yml
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,7 @@ component:
key: Key
value: Value
created_at: Created at
modified_at: Updated at
actions: Actions
public: Public

Expand Down
1 change: 1 addition & 0 deletions src/lang/users.hu_HU.yml
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ component:
key: Kulcs
value: Érték
created_at: Létrehozva
modified_at: Frissítve
actions: Műveletek
public: Publikus

Expand Down
1 change: 1 addition & 0 deletions src/lang/users.sk_SK.yml
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,7 @@ component:
key: Kľúč
value: Hodnota
created_at: Vytvorené
modified_at: Upravené
actions: Akcie
public: Verejné

Expand Down

0 comments on commit 72f3ebe

Please sign in to comment.