47 lines
1.1 KiB
Twig
47 lines
1.1 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block localstyle %}
|
|
<style>
|
|
</style>
|
|
{% endblock %}
|
|
|
|
{% block title %}
|
|
= Modification Issue = {{title}}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>
|
|
Modification Issue<br>
|
|
</h1>
|
|
<small class="text-muted" style="margin-top:-20px">{{title}}</small>
|
|
<br>
|
|
<br>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_widget(form.submit) }}
|
|
<a href="{{ path(routecancel,{id:issue.project.id}) }}" class="btn btn-secondary ms-1">Annuler</a>
|
|
|
|
{% include('include/error.html.twig') %}
|
|
|
|
<div class="row">
|
|
<div class="col-md-6 mx-auto">
|
|
<div class="card mt-3">
|
|
<div class="card-header">Information</div>
|
|
<div class="card-body">
|
|
{{ form_row(form.color) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ form_end(form) }}
|
|
|
|
{% endblock %}
|
|
|
|
{% block localscript %}
|
|
<script>
|
|
$(document).ready(function() {
|
|
$("#project_title").focus();
|
|
});
|
|
</script>
|
|
{% endblock %}
|