Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Flask-DebugToolbar / templates / panels / logger.html
Size: Mime:
{% if records %}
  <table>
    <thead>
      <tr>
        <th>Level</th>
        <th>Time</th>
        <th>Message</th>
        <th>Location</th>
      </tr>
    </thead>
    <tbody>
      {% for record in records %}
        <tr class="{{ loop.cycle('flDebugOdd', 'flDebugEven') }}">
          <td>{{ record.level }}</td>
          <td>{{ record.time }}</td>
          <td>{{ record.message }}</td>
          <td title="{{ record.file_long }}:{{ record.line }}">{{ record.file }}:{{ record.line }}</td>
        </tr>
      {% endfor %}
    </tbody>
  </table>
{% else %}
  <p>No messages logged.</p>
{% endif %}