/templates/dataset/display_application/display.mako

https://bitbucket.org/cistrome/cistrome-harvard/ · Mako · 12 lines · 12 code · 0 blank · 0 comment · 4 complexity · 7e63436242d86cfb84a322e39f2f9852 MD5 · raw file

  1. <%inherit file="/base.mako"/>
  2. <%namespace file="/message.mako" import="render_msg" />
  3. <%def name="title()">Display Application: ${display_link.link.display_application.name} ${display_link.link.name}</%def>
  4. %for message, status in msg:
  5. ${render_msg( message, status )}
  6. %endfor
  7. %if refresh:
  8. <%def name="metas()"><meta http-equiv="refresh" content="10" /></%def>
  9. <p>
  10. This page will <a href="${trans.request.url}">refresh</a> after 10 seconds.
  11. </p>
  12. %endif