﻿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
27643	ModelAdmin.save_as is ignored	Flavio Curella	nobody	"I have the following model:

{{{
from django.db import models


# Create your models here.
class MyModel(models.Model):
    name = models.CharField(max_length=50)
}}}

and a basic admin class for the model:

{{{
from django.contrib import admin

from .models import MyModel


# Register your models here.
class MyModelAdmin(admin.ModelAdmin):
    save_as = True


admin.site.register(MyModel, MyModelAdmin)

}}}

According to the documentation (https://docs.djangoproject.com/en/1.10/ref/contrib/admin/#django.contrib.admin.ModelAdmin.save_as) I should see three buttons: 'Save', 'Save and continue editing' and 'Save as new', but I still get 'Save', 'Save and continue editing' and 'Save and add another'

"	Bug	closed	contrib.admin	1.10	Normal	invalid			Unreviewed	0	0	0	0	0	0
