I think this is really important, Rubik is missing link to theme regions demonstration from block administration screen.

Admin screen where should be link: admin/structure/block
Expected link target (for sky theme): admin/structure/block/demo/sky

Without this link it's very confusing and user can't see where are the regions, e.g. where he is placing the blocks. Also i think it's major usability drawback for important part of Drupal.

(For example if i enable Sky as admin theme, there is short text about blocks and link to theme regions demonstration...)

Comments

niccolox’s picture

agreed with this poster

just spent an hour looking for this in Rubik and realized its not there !

sub +

ps: awesome that Rubik is rocking D7 so hard

Macronomicus’s picture

yea I was wondering this too... perhaps it's best to render the blocks pages in their respective theme? ...at least for me that works, because the help text appears and it seems more logical to see the blocks pages in the actual theme. Seems the help text was stripped out and with it the link to view the block-layout.
The temp workaround is as simple as...

function aa_custom_module_admin_paths_alter(&$paths) {
//Display block in actual theme
   $paths['admin/structure/block*'] = FALSE;
//Also works the other way...
//Treat all user pages as administrative.
   $paths['user/*'] = TRUE;
}
haydeniv’s picture

Issue summary: View changes
Status: Active » Fixed

The link is in the page description in the latest release.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.