Opened 12 years ago
Closed 12 years ago
#20526 closed New feature (duplicate)
django admin framework should provide single record detail view
| Reported by: | Owned by: | nobody | |
|---|---|---|---|
| Component: | contrib.admin | Version: | 1.6-alpha-1 |
| Severity: | Normal | Keywords: | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
- Similar with the edit view but without input widgets
- Customizeable display cell
- An action button to go to the edit view
Change History (3)
comment:1 by , 12 years ago
| Summary: | django admin framework should provide signle record detail view → django admin framework should provide single record detail view |
|---|
comment:2 by , 12 years ago
comment:3 by , 12 years ago
| Resolution: | → duplicate |
|---|---|
| Status: | new → closed |
I think this is a duplicate of #8936.
Note:
See TracTickets
for help on using tickets.
by FUNCTION_FIELD I means the function Title
class MA( models.Model ): title = models.CharField(max_length=128) def Title(self): return self.title Title.short_description = _("MyTitle")