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    
distributed / distributed / http / templates / call-stack.html
Size: Mime:
{% extends main.html %}
{% block content %}
  <h1 class="title"> {{ title }}</h1>

  {% for worker, stacks in call_stack.items() %}
    <h2 class="title is-4"> Worker: {{worker}} </h2>
    {% for task, stack in stacks.items() %}
      <h3 class="title is-5"> Key: {{task}} </h3>
      {% for line in stack %}
      <p> {{ line }} </p>
      {% end %}
    {% end %}
  {% end %}

{% end %}