Django Geoposition - customize admin widget

346 views Asked by At

I'm trying to remove a field from the django-geoposition admin widget. This field: enter image description here

I tried going to the source site-packages/geoposition/static/geoposition/geoposition.css and adding display:none to the relevant css class:

.geoposition-search {
    display: none;
    width: 30%;
}

That didn't work. How can I customize this widget?

0

There are 0 answers