﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
15290	Border style issue in changelist	Julien Phalip	nobody	"Take this example:

Model:
{{{
#!python
from django.db import models

class MyModel(models.Model):
    name = models.CharField(max_length=100, blank=True)
    title = models.CharField(max_length=100, blank=True)
    content = models.CharField(max_length=100, blank=True)
}}}

Admin:
{{{
#!python
from django.contrib import admin

from .models import MyModel

class MyModelAdmin(admin.ModelAdmin):
    list_display = ('name', 'title', 'content')
    list_display_links = ('title',)

admin.site.register(MyModel, MyModelAdmin)
}}}

The display link (here the 'title' field) is represented within a `<th>` instead of a `<td>` which is used for other regular display fields. The issue is that there is no CSS rule for displaying the left border of a `<th>` cell. The attached patch fixes this."		closed	contrib.admin	1.2		fixed			Ready for checkin	1	0	0	0	0	0
