i would like to add a text box below the chart of the Dashboard, it should contain some info for users on how they have to name their projects and some further general info on usage.
could someone help me out with a userscript?
edit:
figured out with help of a friend
name: Add hint on dashboard
description: Shows a hint below the chart on the dashboard
author: xatos
version: 1.0
includes: ^dashboard
excludes:
js:
$(document).ready(
function() {
$("#actionContainer").append( "<p>Test</p><p>Test</p>" );
}
);
css:
div.some-class {
}