Projet

Général

Profil

0001-admin-dont-make-data-sources-sortable-11014.patch

Frédéric Péters, 20 mai 2016 19:43

Télécharger (1016 octets)

Voir les différences:

Subject: [PATCH] admin: dont make data sources sortable (#11014)

 wcs/admin/data_sources.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
wcs/admin/data_sources.py
209 209

  
210 210
        r += htmltext('<div class="bo-block">')
211 211
        r += htmltext('<h2>%s</h2>') % _('Data Sources')
212
        r += htmltext('<ul class="biglist sortable" id="datasource-list">')
212
        r += htmltext('<ul class="biglist" id="datasource-list">')
213 213
        datasources = NamedDataSource.select(order_by='name')
214 214
        for datasource in datasources:
215 215
            r += htmltext('<li class="biglistitem" id="itemId_%s">') % datasource.id
216
-