Custom Query (1173 matches)
Results (166 - 168 of 1173)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#524 | fixed | Themes replace original HTML files completely | ||
Description |
Airy needed a darker version of the MediaGoblin logo. To accomplish this, base.html was copied to /themes/airy/ and edited. So now Airy uses a modified version of the original base.html This means that any changes to the original base.html will not show up when using Airy, so it will always need manual updates to keep up. This is not a good thing to have. :) |
|||
#526 | fixed | Provide a list of collections for site visitors | ||
Description |
Currently there is no way of knowing what collections are available for site visitors to view. Suggestion that on the user profile there is a sample of recently updated collections, with a link to the full list of collections. This is similar to the existing recently updated media, and a link to all media |
|||
#528 | fixed | pagination fails from user page | ||
Description |
I experienced a problem, when trying to go to the second page of a user (https://example.org/u/username/). I just got a Server Error. After trying around, I could find out, that it had to do with a wrong URL in the NextPage Link. Instead of: https://example.org/u/username/gallery/?page=2 it should have been: https://example.org/u/username/?page=2 In the file: mediagoblin/templates/mediagoblin/utils/pagination.html the "base_url" is set by "request.full_path". I tried to set it instead with "request.urlgen('mediagoblin.user_pages.user_home', user= request.user.username)" and it worked. But I am not sure if this would interfere with some other parts... thanks in advance |