##// END OF EJS Templates
help: document about {extras} template keyword...
Matthew Turk -
r20015:ad27cdac default
parent child Browse files
Show More
@@ -219,6 +219,8 b' def showdiffstat(repo, ctx, templ, **arg'
219 return '%s: +%s/-%s' % (len(stats), adds, removes)
219 return '%s: +%s/-%s' % (len(stats), adds, removes)
220
220
221 def showextras(**args):
221 def showextras(**args):
222 """:extras: List of dicts with key, value entries of the 'extras'
223 field of this changeset."""
222 templ = args['templ']
224 templ = args['templ']
223 for key, value in sorted(args['ctx'].extra().items()):
225 for key, value in sorted(args['ctx'].extra().items()):
224 args = args.copy()
226 args = args.copy()
General Comments 0
You need to be logged in to leave comments. Login now