1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<div
xmlns:tal="http://xml.zope.org/namespaces/tal"
xmlns:metal="http://xml.zope.org/namespaces/metal"
xmlns:i18n="http://xml.zope.org/namespaces/i18n"
tal:define="context_menu view/context/menu:context"
id="related-bugs-and-blueprints">
<h3>Related source package recipes</h3>
<div id="recipe-links" class="actions">
<div id="recipe-summary">
<img src="/@@/source-package-recipe" />
<a href="+recipes" tal:content="structure view/recipe_count_text">
1 branch
</a>
using this branch.
<a href="/+help/related-recipes.html" target="help" class="sprite maybe">
<span class="invisible-link">Tag help</span>
</a>
</div>
<span
tal:define="link context_menu/create_recipe"
tal:condition="link/enabled"
tal:replace="structure link/render"
/>
<img src="/@@/beta" alt="beta" title="This feature is in beta"
tal:condition="request/features/code.recipes.beta"/>
</div>
</div>
|