## -*- coding: utf-8; -*- <%namespace file="/grids/nav.mako" import="grid_index_nav" /> <%namespace file="/feedback_dialog_buefy.mako" import="feedback_dialog" /> <%namespace name="base_meta" file="/base_meta.mako" /> ${base_meta.global_title()} » ${capture(self.title)|n} ${base_meta.favicon()} ${self.header_core()} % if background_color: % endif % if not request.rattail_config.production(): % endif ${self.head_tags()}
## Page Title
% if capture(self.content_title): % if show_prev_next is not Undefined and show_prev_next:
% if prev_url: ${h.link_to(u"« Older", prev_url, class_='button autodisable')} % else: ${h.link_to(u"« Older", '#', class_='button', disabled='disabled')} % endif % if next_url: ${h.link_to(u"Newer »", next_url, class_='button autodisable')} % else: ${h.link_to(u"Newer »", '#', class_='button', disabled='disabled')} % endif
% endif

${self.content_title()}

% endif
## Page Body
% if request.session.peek_flash('error'): % for error in request.session.pop_flash('error'):
${error}
% endfor % endif % if request.session.peek_flash(): % for msg in request.session.pop_flash():
${msg}
% endfor % endif ${self.body()}
## Footer
${h.javascript_link(request.static_url('tailbone:static/themes/falafel/js/tailbone.feedback.js') + '?ver={}'.format(tailbone.__version__))} <%def name="title()"> <%def name="content_title()"> ${self.title()} <%def name="header_core()"> ${self.core_javascript()} ${self.extra_javascript()} ${self.core_styles()} ${self.extra_styles()} ## TODO: should this be elsewhere / more customizable? % if dform is not Undefined: <% resources = dform.get_widget_resources() %> % for path in resources['js']: ${h.javascript_link(request.static_url(path))} % endfor % for path in resources['css']: ${h.stylesheet_link(request.static_url(path))} % endfor % endif <%def name="core_javascript()"> ${self.jquery()} ## Vue.js ${h.javascript_link('https://unpkg.com/vue')} ## vue-resource ## (needed for e.g. this.$http.get() calls, used by grid at least) ${h.javascript_link('https://cdn.jsdelivr.net/npm/vue-resource@1.5.1')} ## Buefy 0.7.4 ${h.javascript_link('https://unpkg.com/buefy@0.7.4/dist/buefy.min.js')} ## FontAwesome 5.3.1 <%def name="jquery()"> ## jQuery 1.12.4 ${h.javascript_link('https://code.jquery.com/jquery-1.12.4.min.js')} <%def name="extra_javascript()"> <%def name="core_styles()"> ${self.buefy_styles()} ${h.stylesheet_link(request.static_url('tailbone:static/themes/bobcat/css/base.css') + '?ver={}'.format(tailbone.__version__))} ${h.stylesheet_link(request.static_url('tailbone:static/themes/falafel/css/layout.css') + '?ver={}'.format(tailbone.__version__))} ${h.stylesheet_link(request.static_url('tailbone:static/css/grids.css') + '?ver={}'.format(tailbone.__version__))} ${h.stylesheet_link(request.static_url('tailbone:static/themes/falafel/css/grids.rowstatus.css') + '?ver={}'.format(tailbone.__version__))} ## ${h.stylesheet_link(request.static_url('tailbone:static/css/filters.css') + '?ver={}'.format(tailbone.__version__))} ${h.stylesheet_link(request.static_url('tailbone:static/themes/falafel/css/filters.css') + '?ver={}'.format(tailbone.__version__))} ${h.stylesheet_link(request.static_url('tailbone:static/themes/bobcat/css/forms.css') + '?ver={}'.format(tailbone.__version__))} ${h.stylesheet_link(request.static_url('tailbone:static/css/diffs.css') + '?ver={}'.format(tailbone.__version__))} <%def name="buefy_styles()"> ## Buefy 0.7.4 ${h.stylesheet_link('https://unpkg.com/buefy@0.7.4/dist/buefy.min.css')} ## TODO: this is only being referenced by the progress template i think? ## (so, should make a Buefy progress page at least) <%def name="jquery_theme()"> ${h.stylesheet_link('https://code.jquery.com/ui/1.11.4/themes/dark-hive/jquery-ui.css')} <%def name="extra_styles()"> <%def name="head_tags()"> <%def name="wtfield(form, name, **kwargs)">
${form[name](**kwargs)}
<%def name="simple_field(label, value)"> ## TODO: keep this? only used by personal profile view currently ## (although could be useful for any readonly scenario)
${'' if value is None else value}