Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(139)

Side by Side Diff: MoinMoin/themes/basic/templates/itemviews.html

Issue 112780043: Fixed #433 (Closed)
Patch Set: Added coomment of TODO of adding fqname support to has_item Created 10 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « MoinMoin/themes/__init__.py ('k') | MoinMoin/themes/basic/templates/layout.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 {% set exists = storage.has_item(item_name) %} 1 {% set exists = storage.has_item(item_name) %}
2 {% set current_endpoint = request.endpoint %} 2 {% set current_endpoint = request.endpoint %}
3 3
4 {% set navtabs = theme_supp.get_action_tabs(item_name, current_endpoint) %} 4 {% set navtabs = theme_supp.get_action_tabs(fqname, current_endpoint) %}
5 5
6 {% block views %} 6 {% block views %}
7 {% if navtabs %} 7 {% if navtabs %}
8 <div class="row"> 8 <div class="row">
9 <div class="col-lg-12"> 9 <div class="col-lg-12">
10 <ul class="moin-nav nav-tabs moin-shadow"> 10 <ul class="moin-nav nav-tabs moin-shadow">
11 {% for endpoint, href, maincls, iconcls, linkcls, title, label in navt abs %} 11 {% for endpoint, href, maincls, iconcls, linkcls, title, label in navt abs %}
12 <li {% if maincls %}class="{{ maincls }}"{% endif %}> 12 <li {% if maincls %}class="{{ maincls }}"{% endif %}>
13 <a {% if linkcls %}class="{{ linkcls }}"{% endif %} href="{{ hre f }}" title="{{ title }}" rel="nofollow"> 13 <a {% if linkcls %}class="{{ linkcls }}"{% endif %} href="{{ hre f }}" title="{{ title }}" rel="nofollow">
14 <span class="{{ iconcls }}"></span> 14 <span class="{{ iconcls }}"></span>
15 {{ label }} 15 {{ label }}
16 </a> 16 </a>
17 </li> 17 </li>
18 {% endfor %} 18 {% endfor %}
19 </ul> 19 </ul>
20 </div> 20 </div>
21 </div> 21 </div>
22 {% endif %} 22 {% endif %}
23 {% endblock %} 23 {% endblock %}
OLDNEW
« no previous file with comments | « MoinMoin/themes/__init__.py ('k') | MoinMoin/themes/basic/templates/layout.html » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b