diff --git a/datafiles/templates/Html/maintain.html.st b/datafiles/templates/Html/maintain.html.st index 5b7500b00..4cdd5fb5a 100644 --- a/datafiles/templates/Html/maintain.html.st +++ b/datafiles/templates/Html/maintain.html.st @@ -50,10 +50,10 @@ package after its been released.
Reset the fail count and trigger rebuild. Choose this option only if you believe our build process didn't go right for some reason. Reseting fail count won't trigger rebuild if your package has documentation.

$versions:{pkgid|$pkgid$}; separator=", "$

- + diff --git a/datafiles/templates/Html/package-page.html.st b/datafiles/templates/Html/package-page.html.st index bacafe9fc..a0453627e 100644 --- a/datafiles/templates/Html/package-page.html.st +++ b/datafiles/templates/Html/package-page.html.st @@ -95,6 +95,11 @@ edit package information +
  • + + edit package analytics pixels + +
  • Candidates

    diff --git a/src/Distribution/Server/Features/Html.hs b/src/Distribution/Server/Features/Html.hs index 7155f62e4..0e4847011 100644 --- a/src/Distribution/Server/Features/Html.hs +++ b/src/Distribution/Server/Features/Html.hs @@ -1918,7 +1918,7 @@ mkHtmlAnalyticsPixels HtmlUtilities{..} CoreFeature{..} UserFeature{..} UploadFe template <- getTemplate templates "analytics-pixels-page.html" return $ toResponse $ template [ "pkgname" $= pkgname, - "AnalyticsPixels" $= map analyticsPixelUrl (Set.toList analyticsPixels) + "analyticsPixels" $= map analyticsPixelUrl (Set.toList analyticsPixels) ] userPackagesAnalyticsPixelsHtml :: UserName -> ServerPartE Response