This file contains hidden or 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
| { | |
| "version": 1, | |
| "variables": [{ | |
| "names": ["card", "cvv"], | |
| "values": [ | |
| [ | |
| "0-test", | |
| "0-test" | |
| ], | |
| [ |
This file has been truncated, but you can view the full file.
This file contains hidden or 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
| {"version":1,"variables":[{"names":["email"],"values":[["0-test@gmail.com"],["1-test@gmail.com"],["2-test@gmail.com"],["3-test@gmail.com"],["4-test@gmail.com"],["5-test@gmail.com"],["6-test@gmail.com"],["7-test@gmail.com"],["8-test@gmail.com"],["9-test@gmail.com"],["10-test@gmail.com"],["11-test@gmail.com"],["12-test@gmail.com"],["13-test@gmail.com"],["14-test@gmail.com"],["15-test@gmail.com"],["16-test@gmail.com"],["17-test@gmail.com"],["18-test@gmail.com"],["19-test@gmail.com"],["20-test@gmail.com"],["21-test@gmail.com"],["22-test@gmail.com"],["23-test@gmail.com"],["24-test@gmail.com"],["25-test@gmail.com"],["26-test@gmail.com"],["27-test@gmail.com"],["28-test@gmail.com"],["29-test@gmail.com"],["30-test@gmail.com"],["31-test@gmail.com"],["32-test@gmail.com"],["33-test@gmail.com"],["34-test@gmail.com"],["35-test@gmail.com"],["36-test@gmail.com"],["37-test@gmail.com"],["38-test@gmail.com"],["39-test@gmail.com"],["40-test@gmail.com"],["41-test@gmail.com"],["42-test@gmail.com"],["43-test@gmail.com"],["44-test@g |
This file contains hidden or 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
| @model RemoteJobs.DataStores.Queries.JobList.JobListQueryResponse | |
| <div class="flex flex-no-wrap border-b last:border-b-0 border-gray-400 p-2 sm:p-5"> | |
| @{ | |
| if (!string.IsNullOrEmpty(@Model.CompanyLogoUrl)) | |
| { | |
| <a asp-controller="Companies" | |
| asp-action="Details" | |
| asp-route-slug="@Model.CompanySlug"> |
This file contains hidden or 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
| <a class="cursor-pointer px-4 py-2 mt-2 text-sm font-semibold text-gray-900 bg-gray-200 rounded-lg sm:mt-0 hover:text-gray-900 focus:text-gray-900 hover:bg-gray-200 focus:bg-gray-200 sm:text-left text-center" | |
| asp-controller="PostJob" | |
| asp-action="Index">Post Job</a> | |
| <input placeholder="Search job title or company name" class="form-input block mt-2 w-full bg-gray-200 text-gray-900 placeholder-gray-400 sm:hidden" /> |
This file contains hidden or 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
| <div class="column"> | |
| <div class="columns"> | |
| <div class="column is-4"> | |
| <h4 class="title is-4">Features</h4> | |
| <ul> | |
| <li><a asp-area="" asp-controller="Feature" asp-action="Index">Bookings</a></li> | |
| <li><a asp-area="" asp-controller="Feature" asp-action="Index">CRM</a></li> | |
| <li><a asp-area="" asp-controller="Feature" asp-action="Index">Calendar</a></li> | |
| <li><a asp-area="" asp-controller="Feature" asp-action="Index">Inventory</a></li> | |
| <li><a asp-area="" asp-controller="Feature" asp-action="Index">Kanban</a></li> |
This file contains hidden or 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
| <template> | |
| <section> | |
| <ModalPriceTypeAdd | |
| @onOk="onFiltering()" | |
| v-model="modalStates.add" | |
| /> | |
| <ModalPriceTypeEdit | |
| @onOk="onFiltering()" | |
| :priceType="editingRow" | |
| v-model="modalStates.edit" |
This file contains hidden or 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
| <template> | |
| <section> | |
| <ModalPaymentMethodAdd | |
| @onOk="onFiltering()" | |
| v-model="modalStates.add" | |
| /> | |
| <ModalPaymentMethodEdit | |
| @onOk="onFiltering()" | |
| :paymentMethodId="editingRow.paymentMethodId" |
This file contains hidden or 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
| <template> | |
| <section> | |
| <ModalInventoryGroupAdd | |
| @onOk="onFiltering()" | |
| v-model="modalStates.add" | |
| /> | |
| <ModalInventoryGroupEdit | |
| @onOk="onFiltering()" | |
| :inventoryGroupId="editingRow.inventoryGroupId" |
This file contains hidden or 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
| <template> | |
| <section> | |
| <ModalCustomerSourceAdd | |
| @onOk="onFiltering()" | |
| v-model="modalStates.add" | |
| /> | |
| <ModalCustomerSourceEdit | |
| @onOk="onFiltering()" | |
| :customerSourceId="editingRow.customerSourceId" |
This file contains hidden or 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
| <template> | |
| <section> | |
| <ModalCustomerAdd | |
| @onOk="onFiltering" | |
| v-model="modalStates.add" /> | |
| <ModalOrderListComponent | |
| v-model="modalStates.viewOrders" | |
| title="Orders" | |
| :rental-orders-list="resultOrdersList" |
NewerOlder