- gitlist.git
- src
- twig
- search.twig
This file ( 3kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
{% extends 'layout-page.twig' %}
{% set page = 'files' %}
{% block title %}P3X GitList{% endblock %}
{% block content %}
{% embed 'breadcrumb.twig' with {breadcrumbs: breadcrumbs} %}
{% block left %}
{% if results %}
<span class="C">File: {{ results | length }}</span>
{% endif %}
{% endblock %}
{% endembed %}
{% if results %}
<div class="p3x-gitlist-overlay">
<div>
<i class="fas fa-cog fa-spin fa-4x"></i>
</div>
<br/>
<div>
Hang on, we are loading a big search...
</div>
</div>
{% for result in results %}
<div class="panel panel-default p3x-gitlist-file-fragment-panel" data-index="{{ loop.index0 }}"
data-mode="{{ result.type }}">
<div class="panel-heading">
<table style="width: 100%; background-color: transparent;"
id="p3x-gitlilst-file-fragment-heading-table-{{ loop.index0 }}">
<tr>
<td>
<span class="far fa-file-alt"></span> <a
href="{{ path('blob', {repo: repo, branch: branch, file: result.file, commitishPath: branch ~ '/' ~ result.file}) }}&codemirror=1&query={{ search_query }}#L{{ result.line }}">{{ result.file }}</a>
on line {{ result.line }}
</td>
<td style="text-align: right;" class="p3x-gitlist-button">
<button class="btn btn-sm btn-primary"
id="p3x-gitlilst-file-fragment-heading-button-edit-{{ loop.index0 }}"
onclick="location ='{{ path('blob', {repo: repo, branch: branch, file: result.file, commitishPath: branch ~ '/' ~ result.file}) }}&codemirror=1&query={{ search_query }}#L{{ result.line }}'"
style=" text-transform: capitalize;">
<span class="fas fa-file"></span> View {{ result.type }} file
</button>
</td>
</tr>
</table>
</div>
<div class="panel-body">
<div class="p3x-gitlist-file-fragment-text"
id="p3x-gitlist-file-fragment-text-{{ loop.index0 }}">{{ result.match }}</div>
<textarea class="hidden"
id="p3x-gitlist-file-fragment-codemirror-{{ loop.index0 }}">{{ result.match }}</textarea>
</div>
</div>
{% endfor %}
{% else %}
<h4>
No result.
</h4>
{% endif %}
{% endblock %}