Is it possible to get all countries displayed at one page?

If not, would be super to make it possible. It is irritating to that I need to click forth and back to find the country I'm looking for. I can handle to see 200 countries in one page ...

Comments

johnv’s picture

Title: UX: Dipslay all countries at one page » UX: Display all countries at one page

+1.
A filter on Name and/or Status would be an nice alternative.

matsbla’s picture

Good idea with filter. If making a filter it would be nice to be able to filter in regions; africa, europe, america, etc.

Alan D.’s picture

I'm going to say no to including this in D7 version, but D8 version will be views based (I hope).

But to kick things off, maybe we can create a repo of a couple views with various degrees of dependencies for folks:

1) Fully fledged administrative view
Pre-configured table layout with Administration Views / Views Bulk Operations dependencies. Maybe even adding a Views data export based display for export. Imports?

2) Admin view
As per #1, but no additional extras. Filters, sorting and the available bulk views operations preconfigured

3) Basic administrative view
A new local menu tab with table layout with filters and sorting. New local task as we can not override the admin path without custom code or the Administration Views module.

Another approach would be a sandbox project or sub-project that would enable us to override the menu router with a simple view.

As per the original request, this is for a single line in code:

    ->limit(50)

Maybe replace with

    ->limit(variable_get('countries_admin_listing_size', 50))

And then users can quickly alter if they so desire.

i.e. using Devel Execute PHP / PHP modules PHP filter format field / wherever, run this once

variable_set('countries_admin_listing_size', 5000);

PS: If supplying a patch for this bit, remember the variable_del() in countries.install hook_uninstall().