<div dir="ltr">Hi Chris.<div><br></div><div>There is a <span style="background-color:rgb(246,246,246);font-family:monospace;font-size:12.1875px">custom_templates_dir </span>option described in <a href="https://docs.buildbot.net/latest/manual/cfg-www.html#web-server">https://docs.buildbot.net/latest/manual/cfg-www.html#web-server</a><br></div><div>The documentation is actually quite sparse, and we could use a more detailled guide on how to use it :-/</div><div><br></div><div>In order to achieve all the real-time features, the angularJS has to be more complex than what we had before.</div><div><br></div><div>You can customize the templates, but you cannot customize what the JS requests as for the details per builds.</div><div>As per the requirements you are describing, this is not possible by solely customizing the template</div><div><br></div><div>following line:</div><div><br></div><div><a href="https://github.com/buildbot/buildbot/blob/master/www/base/src/app/builders/builders.controller.coffee#L106">https://github.com/buildbot/buildbot/blob/master/www/base/src/app/builders/builders.controller.coffee#L106</a><br></div><div>has to be changed</div><div><div><br></div><div>        builds = data.getBuilds(limit: 200, order: '-started_at')</div></div><div><div>-></div><div><div>        builds = data.getBuilds(property: "branch", limit: 200, order: '-started_at')</div></div></div><div><br></div><div>by using the property information has described in the rest doc</div><div><a href="http://docs.buildbot.net/latest/developer/rest.html#build">http://docs.buildbot.net/latest/developer/rest.html#build</a><br></div><div><br></div><div>It would be nice to have buildbot support this to be more or less configurable (maybe a list of properties that can be configurable in settings page, and which will be queried automatically)</div><div>as everybody maybe have different property he or she would like to see in the builder page.</div><div>We cannot display or query all properties, as this would have significant performance impact.</div><div><br></div><div>HTH,</div><div>Pierre</div><div><br></div></div><br><div class="gmail_quote"><div dir="ltr">On Thu, Feb 23, 2017 at 5:57 AM Chris Spencer <<a href="mailto:chrisspen@gmail.com">chrisspen@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr" class="gmail_msg"><div class="gmail_msg"><div class="gmail_msg">How do you customize the template that lists a builder's ongoing and pending builds? (e.g. <a href="http://mybuildbotserver.com/#/builders/1" class="gmail_msg" target="_blank">http://mybuildbotserver.com/#/builders/1</a>)<br class="gmail_msg"><br class="gmail_msg"></div>I'd like to add a column that lists the branch name, which is otherwise only visible under the build's "Build Properties" tab.<br class="gmail_msg"><br class="gmail_msg"></div>I remember seeing some guides on customizing templates in version 0.8*, but the current doc's page on customization (<a href="http://docs.buildbot.net/latest/manual/customization.html" class="gmail_msg" target="_blank">http://docs.buildbot.net/latest/manual/customization.html</a>) doesn't mention this anymore.<br class="gmail_msg"></div>
_______________________________________________<br class="gmail_msg">
users mailing list<br class="gmail_msg">
<a href="mailto:users@buildbot.net" class="gmail_msg" target="_blank">users@buildbot.net</a><br class="gmail_msg">
<a href="https://lists.buildbot.net/mailman/listinfo/users" rel="noreferrer" class="gmail_msg" target="_blank">https://lists.buildbot.net/mailman/listinfo/users</a></blockquote></div>