mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
8a8437470e
Two reasons for this. First, this removes flask and its dependencies, which are quite sizeable. Second, pyinstaller now barfs on simplejson, which is a Flask dependency. I just don't have time to fix this upstream, so doing what we should be doing anyway is a no-brainer.
10 lines
170 B
HTML
10 lines
170 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="span12">
|
|
{% block body %}
|
|
{% end %}
|
|
</div>
|
|
</div>
|
|
{% end %}
|