mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Update broken links (#7019)
* Update broken links * Update broken links
This commit is contained in:
parent
df5fcf7d62
commit
d24219fec3
@ -4,7 +4,7 @@ Checklist of steps to perform at each code release
|
|||||||
|
|
||||||
### Update Version String
|
### Update Version String
|
||||||
|
|
||||||
Update `INVENTREE_SW_VERSION` in [version.py](https://github.com/inventree/InvenTree/blob/master/InvenTree/InvenTree/version.py)
|
Update `INVENTREE_SW_VERSION` in [version.py](https://github.com/inventree/InvenTree/blob/master/src/backend/InvenTree/InvenTree/version.py)
|
||||||
|
|
||||||
### Increment API Version
|
### Increment API Version
|
||||||
|
|
||||||
|
@ -96,7 +96,7 @@ The HEAD of the "stable" branch represents the latest stable release code.
|
|||||||
|
|
||||||
## API versioning
|
## API versioning
|
||||||
|
|
||||||
The [API version](https://github.com/inventree/InvenTree/blob/master/InvenTree/InvenTree/api_version.py) needs to be bumped every time when the API is changed.
|
The [API version](https://github.com/inventree/InvenTree/blob/master/src/backend/InvenTree/InvenTree/api_version.py) needs to be bumped every time when the API is changed.
|
||||||
|
|
||||||
## Environment
|
## Environment
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ Additionally, add the following imports after the extended line.
|
|||||||
#### Blocks
|
#### Blocks
|
||||||
The page_base file is split into multiple sections called blocks. This allows you to implement sections of the webpage while getting many items like navbars, sidebars, and general layout provided for you.
|
The page_base file is split into multiple sections called blocks. This allows you to implement sections of the webpage while getting many items like navbars, sidebars, and general layout provided for you.
|
||||||
|
|
||||||
The current default page base can be found [here](https://github.com/inventree/InvenTree/blob/master/InvenTree/templates/page_base.html). Look through this file to determine overridable blocks. The [stock app](https://github.com/inventree/InvenTree/tree/master/InvenTree/stock) offers a great example of implementing these blocks.
|
The current default page base can be found [here](https://github.com/inventree/InvenTree/blob/master/src/backend/InvenTree/templates/page_base.html). Look through this file to determine overridable blocks. The [stock app](https://github.com/inventree/InvenTree/tree/master/src/backend/InvenTree/stock) offers a great example of implementing these blocks.
|
||||||
|
|
||||||
!!! warning "Sidebar Block"
|
!!! warning "Sidebar Block"
|
||||||
You may notice that implementing the `sidebar` block doesn't initially work. Be sure to enable the sidebar using JavaScript. This can be achieved by appending the following code, replacing `label` with a label of your choosing, to the end of your template file.
|
You may notice that implementing the `sidebar` block doesn't initially work. Be sure to enable the sidebar using JavaScript. This can be achieved by appending the following code, replacing `label` with a label of your choosing, to the end of your template file.
|
||||||
|
@ -13,4 +13,4 @@ You can use all content variables from the [StockLocation](./context_variables.m
|
|||||||
|
|
||||||
A default report template is provided out of the box, which can be used as a starting point for developing custom return order report templates.
|
A default report template is provided out of the box, which can be used as a starting point for developing custom return order report templates.
|
||||||
|
|
||||||
View the [source code](https://github.com/inventree/InvenTree/blob/master/InvenTree/report/templates/report/inventree_slr_report.html) for the default stock location report template.
|
View the [source code](https://github.com/inventree/InvenTree/blob/master/src/backend/InvenTree/report/templates/report/inventree_slr_report.html) for the default stock location report template.
|
||||||
|
Loading…
Reference in New Issue
Block a user