You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/3.0/discreet-information.md
+36
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,23 @@ class Avo::Resources::Post < Avo::BaseResource
27
27
end
28
28
```
29
29
30
+
## Display the `id`
31
+
32
+
To save field space, you can use the discreet information area to display the id of the current record.
33
+
34
+
Set the option to the `:id` value and the id will be added next to the title.
35
+
36
+
```ruby
37
+
# app/avo/resources/post.rb
38
+
classAvo::Resources::Post < Avo::BaseResource
39
+
self.discreet_information =:id
40
+
41
+
# fields and other resource configuration
42
+
end
43
+
```
44
+
45
+
You can alternatively use `:id_badge` to display the id as a badge.
46
+
30
47
## Display the `created_at` and `updated_at` timestamps
31
48
32
49
The reason why we built this feature was that we wanted a place to display the created and updated at timestamps but didn't want to use up a whole field for it.
@@ -45,6 +62,8 @@ end
45
62
46
63
If the record doesn't have the `created_at` or `updated_at` attributes, they will be ommited.
47
64
65
+
You can alternatively use `:timestamps_badge` to display the timestamps as a badge.
66
+
48
67
## Options
49
68
50
69
You may fully customize the discreet information item by taking control of different options.
@@ -106,6 +125,23 @@ end
106
125
107
126
</Option>
108
127
128
+
<Optionname="`as`">
129
+
130
+
The `as` option specifies the type of representation. Currently, only `:badge` is supported, but additional types may be introduced in the future.
0 commit comments