﻿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
8449	SlugField validator not working in new admin	lingrlongr	nobody	"The new admin app is allowing invalid characters in SlugFields.  I tested with this model:
{{{
# models.py
from django.db import models

class SlugModel(models.Model):
    slug = models.SlugField()
}}}
{{{ 
# admin.py    
from django.contrib import admin
from models import SlugModel

class SlugModelAdmin(admin.ModelAdmin):
    pass

admin.site.register(SlugModel, SlugModelAdmin)
}}}

In the admin, I tested the following:
 1. hello world
 2. slug%fest
 3. pirate&bay
 
Each one is saved successfully. A validation error does not appear.

Tested in SVN 8441."		closed	contrib.admin	dev		duplicate	slug		Accepted	0	0	0	0	0	0
