Left: | ||
Right: |
OLD | NEW |
---|---|
1 {% extends theme("base.html") %} | 1 {% extends theme("base.html") %} |
2 | 2 |
3 {% import theme("snippets.html") as snippets %} | 3 {% import theme("snippets.html") as snippets %} |
4 {% set logo = snippets.logo() %} | 4 {% set logo = snippets.logo() %} |
5 {% set footer_logos = snippets.creditlogos() %} | 5 {% set footer_logos = snippets.creditlogos() %} |
6 {% set credits = snippets.credits() %} | 6 {% set credits = snippets.credits() %} |
7 {% set user_actions, item_navigation, item_actions = theme_supp.get_local_panel( fqname) %} | 7 {% set user_actions, item_navigation, item_actions = theme_supp.get_local_panel( fqname) %} |
8 {% set basic_scripts = snippets.add_scripts() %} | 8 {% set basic_scripts = snippets.add_scripts() %} |
9 | 9 |
10 {% set current_url = request.url %} | 10 {% set current_url = request.url %} |
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
223 {{ local_panel_main(item_navigation) }} | 223 {{ local_panel_main(item_navigation) }} |
224 {% endif %} | 224 {% endif %} |
225 | 225 |
226 {% endif %} | 226 {% endif %} |
227 | 227 |
228 {% for cls, url, text, title in navibar_items if cls == 'userlink' %} | 228 {% for cls, url, text, title in navibar_items if cls == 'userlink' %} |
229 {% if loop.first %} | 229 {% if loop.first %} |
230 <div class="list-group-item moin-list-headin g">Quick Links</div> | 230 <div class="list-group-item moin-list-headin g">Quick Links</div> |
231 {% endif %} | 231 {% endif %} |
232 <div class="moin-quicklink"> | 232 <div class="moin-quicklink"> |
233 <a class="moin-quicklink-label {{ cls }}" hr ef="{{ url }}" {% if title %}title="{{ title }}"{% endif %}>{{ text|shorten_item _name }} | 233 <a class="moin-quicklink-label {{ cls }}" hr ef="{{ url }}" {% if title %}title="{{ title }} : {{ url }}"{% endif %}>{{ text| shorten_item_name(20) }} |
Thomas.J.Waldmann
2014/08/09 21:45:09
same url-escape issue here.
also: if you have a "
ajgupta93
2014/08/10 04:48:04
I changed that to display only url in case title i
| |
234 </a> | |
235 <a class="moin-quicklink-delete" href="{{ ur l_for('frontend.quicklink_item', item_name=text) }}"> | |
236 <i class="icon-remove"></i> | |
237 </a> | 234 </a> |
238 </div> | 235 </div> |
239 {% endfor %} | 236 {% endfor %} |
240 </div> | 237 </div> |
241 </div> | 238 </div> |
242 </div><!--first row of sidebar--> | 239 </div><!--first row of sidebar--> |
243 | 240 |
244 <div class="row"> | 241 <div class="row"> |
245 <div class="col-lg-12"> | 242 <div class="col-lg-12"> |
246 {% if self.local_panel %} | 243 {% if self.local_panel %} |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
296 </div> | 293 </div> |
297 </div> <!--/row for footer--> | 294 </div> <!--/row for footer--> |
298 {% endblock %} | 295 {% endblock %} |
299 </div><!--/container--> | 296 </div><!--/container--> |
300 {% endblock %} | 297 {% endblock %} |
301 | 298 |
302 {% block body_scripts %} | 299 {% block body_scripts %} |
303 {{ super() }} | 300 {{ super() }} |
304 {{ basic_scripts }} | 301 {{ basic_scripts }} |
305 {% endblock %} | 302 {% endblock %} |
OLD | NEW |