diff --git a/docs/install/networking/openvswitch.md b/docs/install/networking/openvswitch.md index 439a927..e6536c5 100644 --- a/docs/install/networking/openvswitch.md +++ b/docs/install/networking/openvswitch.md @@ -71,4 +71,40 @@ We saw this quite often. The solution is to restart the Open vSwitch services on $ service openvswitch-ipsec restart && service openvswitch-switch restart ``` -> Other services connecting to remote nodes via the internal network might need a restart as well, as soon as the connections have been established. \ No newline at end of file +> Other services connecting to remote nodes via the internal network might need a restart as well, as soon as the connections have been established. + + \ No newline at end of file diff --git a/ipynbsrv/admin/admin.py b/ipynbsrv/admin/admin.py index 4cfd7bc..9d3a18d 100644 --- a/ipynbsrv/admin/admin.py +++ b/ipynbsrv/admin/admin.py @@ -290,7 +290,7 @@ class ContainerImageAdmin(admin.ModelAdmin): Admin model for the `ContainerImage` model. """ - list_display = ['get_friendly_name', 'description', 'is_internal', 'is_public'] + list_display = ['get_friendly_name', 'short_description', 'is_internal', 'is_public'] list_filter = [ 'is_internal', 'is_public', @@ -299,7 +299,7 @@ class ContainerImageAdmin(admin.ModelAdmin): fieldsets = [ ('General Properties', { - 'fields': ['name', 'description', 'owner'] + 'fields': ['name', 'short_description', 'description', 'owner'] }), ('Backend Properties', { 'classes': ['collapse'],