New issue template for filing issue and cut the issue filing hassle
This commit is contained in:
parent
1e0da3c42a
commit
62d1b23a14
|
|
@ -0,0 +1,66 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Feature</title>
|
||||
<style>
|
||||
.bagisto
|
||||
{
|
||||
color: blue;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div>
|
||||
<h3>Title</h3>
|
||||
<hr>
|
||||
<p class="bagisto">
|
||||
|
||||
A well written title should contain a clear, brief explanation of the Feature, making emphasis on the most important points.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3>Preconditions</h3>
|
||||
<hr>
|
||||
<p class="bagisto">Please provide as detailed information about your environment as possible.</p>
|
||||
<ul>
|
||||
<li> framework Version:</li>
|
||||
<li>Commit id:</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3>Description</h3>
|
||||
<hr>
|
||||
<p class="bagisto">Description helps the developer to understand the Feature.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3>Steps to reproduce</h3>
|
||||
<hr>
|
||||
<p class="bagisto">It is important to provide a set of clear steps to that location where feature need to be added. If relevant please include code samples.</p>
|
||||
<ol>
|
||||
<li> step1</li>
|
||||
<li> step2</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
# Bug report
|
||||
|
||||
### Title
|
||||
|
||||
<p class="bagisto">
|
||||
Title is a vital part of bug report for developer and triager to quickly identify a unique issue.
|
||||
|
||||
A well written title should contain a clear, brief explanation of the issue, making emphasis on the most important points.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
### Issue Description
|
||||
Bug description helps the developer to understand the bug.It describes the problem encountered.
|
||||
|
||||
### Preconditions
|
||||
Please provide as detailed information about your environment as possible.
|
||||
|
||||
1. framework Version.
|
||||
2. Commit id.
|
||||
|
||||
### Steps to reproduce
|
||||
It is important to provide a set of clear steps to reproduce this bug.If relevant please include code samples.
|
||||
|
||||
1. step1
|
||||
2. step2
|
||||
|
||||
### Expected result
|
||||
Tell us what should happen
|
||||
* [Screenshots, logs or description]
|
||||
|
||||
### Actual result
|
||||
Tell us what happens instead
|
||||
* [Tell us what happens instead]
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Support</title>
|
||||
<style>
|
||||
.bagisto
|
||||
{
|
||||
color: blue;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div>
|
||||
<h3>Title</h3>
|
||||
<hr>
|
||||
<p class="bagisto">
|
||||
Title is a vital part of bug report for developer and triager to quickly identify a unique issue.
|
||||
<br>
|
||||
A well written title should contain a clear, brief explanation of the issue, making emphasis on the most important points.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3>Preconditions</h3>
|
||||
<hr>
|
||||
<p class="bagisto">Please provide as detailed information about your environment as possible.</p>
|
||||
<ul>
|
||||
<li> framework Version:</li>
|
||||
<li>Commit id:</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3>Description</h3>
|
||||
<hr>
|
||||
<p class="bagisto">Description helps the developer to understand the exact scenario.It describes the problem encountered.</p>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<h3>Steps to reproduce</h3>
|
||||
<hr>
|
||||
<p class="bagisto">It is important to provide a set of clear steps to reproduce that scenario. If relevant please include code samples.</p>
|
||||
<ol>
|
||||
<li> step1</li>
|
||||
<li> step2</li>
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
|
@ -42,7 +42,7 @@ return [
|
|||
'key' => 'catalog.products',
|
||||
'name' => 'admin::app.layouts.products',
|
||||
'route' => 'admin.catalog.products.index',
|
||||
'sort' => 4,
|
||||
'sort' => 1,
|
||||
'icon-class' => ''
|
||||
], [
|
||||
'key' => 'catalog.categories',
|
||||
|
|
@ -54,13 +54,13 @@ return [
|
|||
'key' => 'catalog.attributes',
|
||||
'name' => 'admin::app.layouts.attributes',
|
||||
'route' => 'admin.catalog.attributes.index',
|
||||
'sort' => 1,
|
||||
'sort' => 2,
|
||||
'icon-class' => ''
|
||||
], [
|
||||
'key' => 'catalog.families',
|
||||
'name' => 'admin::app.layouts.attribute-families',
|
||||
'route' => 'admin.catalog.families.index',
|
||||
'sort' => 2,
|
||||
'sort' => 4,
|
||||
'icon-class' => ''
|
||||
], [
|
||||
'key' => 'customers',
|
||||
|
|
|
|||
Loading…
Reference in New Issue