Mercurial > p > roundup > code
view share/roundup/templates/jinja2/html/layout/page.html @ 8566:e4191aa7b402 default tip
doc: issue2551415 correct doc for change input->input_payload
in 2.5 the rest interface changed a variable name from input to
input_payload. An earlier commit changed the rest docs. This commit
adds an item for it to the upgrading 2.4.0->2.5.0 section. Also cross
reference added to the rest docs with the updated examples.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 09 Apr 2026 00:19:06 -0400 |
| parents | 2bf0c4e7795e |
| children |
line wrap: on
line source
{% set status_notresolved = '-1,1,2,3,4,5,6,7' -%} {% set columns = 'id,activity,title,creator,status' -%} {% set columns_showall = 'id,activity,title,creator,assignedto,status' -%} <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="description" content="Roundup is a python-based, MIT licensed issue-tracking system with command-line, web and e-mail interfaces"> <meta name="viewport" content="width=device-width"> <title>{% block head_title %}{% endblock %}</title> <link rel="stylesheet" type="text/css" href="@@file/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="@@file/style.css"> {%- block extracss %} {% endblock %} </head> <body> {% block navbar %} {% include 'layout/banner.html' %} {% endblock %} {% block page_content %} <div class='container-fluid'> <div class='row'> <div class='col-3 col-lg-2 navigation'> {% block leftnav %} {% include 'layout/navigation.html' %} {% endblock %} </div> <div class='col-9 col-lg-10'> <div class='pb-2 mb-2 border-bottom'> <h3>{% block page_header %} {% endblock %}</h3> {% if options.error_message %} <div class="alert alert-danger alert-dismissible fade show" role="alert"> <ul class="mb-0"> {% for message in options.error_message %} <li>{{ message|safe }}</li> {% endfor %} </ul> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> {% endif %} {% if options.ok_message %} <div class="alert alert-success alert-dismissible fade show" role="alert"> <ul class="mb-0"> {% for message in options.ok_message %} <li>{{ message|safe }}</li> {% endfor %} </ul> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> {% endif %} </div> {% block content %} {% endblock %} </div> </div> </div> {% endblock %} {% block footer %} {% include 'layout/footer.html' %} {% endblock %} <script src='@@file/jquery-1.9.0.min.js'></script> <script src='@@file/bootstrap.min.js'></script> <script src='@@file/datecopy.min.js'></script> {% block extrajs %} {% endblock %} </body> </html>
