-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add select2 css/js to process settings (#169)
- Loading branch information
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<metal:block use-macro="main_template"> | ||
|
||
<div metal:fill-slot="css"> | ||
<link rel="stylesheet" href="${request.static_path('deform:static/select2/select2.css')}"/> | ||
</div> | ||
|
||
<div metal:fill-slot="javascript"> | ||
<script src="${request.static_path('deform:static/select2/select2.js')}" | ||
type="text/javascript"></script> | ||
</div> | ||
|
||
<div metal:fill-slot="content"> | ||
<div class="container"> | ||
|
||
<div class="panel panel-default"> | ||
<div class="panel-heading"> | ||
<span class="panel-title"> | ||
<a href="${request.route_path('settings')}"> | ||
<i class="fa fa-fw fa-chevron-left" ></i> | ||
</a> | ||
${title} | ||
</span> | ||
</div> | ||
<div class="panel-body"> | ||
<tal:form replace="structure form">The form will render here</tal:form> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
</metal:block> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters