reformatted

This commit is contained in:
Andy Miller
2015-08-21 15:35:58 -06:00
parent 7a3809d2f1
commit 84697315f6
2 changed files with 6 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
{% extends 'partials/base.html.twig' %}
{% set data = admin.data('site') %}
{% block titlebar %}
<div class="button-bar">
<a class="button" href="{{ base_url }}"><i class="fa fa-reply"></i> {{ "PLUGIN_ADMIN.BACK"|tu }}</a>
@@ -9,6 +11,7 @@
{% endblock %}
{% block content_top %}
<div class="alert notice">{{ "PLUGIN_ADMIN.SAVE_LOCATION"|tu }}: <b>{{ data.file.filename|replace({(base_path):''}) }}</b></div>
<ul class="tab-bar">
<li><a href="{{ base_url_relative }}/system">{{ "PLUGIN_ADMIN.SYSTEM"|tu }}</a></li>
<li class="active"><span>{{ "PLUGIN_ADMIN.SITE"|tu }}</span></li>
@@ -17,9 +20,6 @@
{% endblock %}
{% block content %}
{% set data = admin.data('site') %}
<br />
<div class="alert notice">{{ "PLUGIN_ADMIN.SAVE_LOCATION"|tu }}: <b>{{ data.file.filename|replace({(base_path):''}) }}</b></div>
{% include 'partials/blueprints.html.twig' with { blueprints: data.blueprints, data: data } %}
{% endblock %}

View File

@@ -1,5 +1,7 @@
{% extends 'partials/base.html.twig' %}
{% set data = admin.data('system') %}
{% block titlebar %}
<div class="button-bar">
<a class="button" href="{{ base_url }}"><i class="fa fa-reply"></i> {{ "PLUGIN_ADMIN.BACK"|tu }}</a>
@@ -9,6 +11,7 @@
{% endblock %}
{% block content_top %}
<div class="alert notice">{{ "PLUGIN_ADMIN.SAVE_LOCATION"|tu }}: <b>{{ data.file.filename|replace({(base_path):''}) }}</b></div>
<ul class="tab-bar">
<li class="active"><span>{{ "PLUGIN_ADMIN.SYSTEM"|tu }}</span></li>
<li><a href="{{ base_url_relative }}/site">{{ "PLUGIN_ADMIN.SITE"|tu }}</a></li>
@@ -17,11 +20,6 @@
{% endblock %}
{% block content %}
{% set data = admin.data('system') %}
<br />
{{ dump(base_path) }}
<div class="alert notice">{{ "PLUGIN_ADMIN.SAVE_LOCATION"|tu }}: <b>{{ data.file.filename|replace({(base_path):''}) }}</b></div>
{% include 'partials/blueprints.html.twig' with { blueprints: data.blueprints, data: data } %}
{% endblock %}