fixed presentation and factsheet design

This commit is contained in:
Ritikesh yadav
2024-06-28 13:30:49 +05:30
8 changed files with 42 additions and 18 deletions

View File

@@ -57994,4 +57994,15 @@ label.error {
}
#kt_profile_details_view svg.svg-inline--fa.fa-download:hover {
color: #c18948;
}
}
.modal .btn.btn-icon .svg-icon:hover {
color: #fff;
background-color: #c18948;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px;
}

View File

@@ -1282,7 +1282,7 @@ nav {
color: #000;
}
.chat-box .chat-msgs .card-body {
height: 66%;
height: 85%;
overflow-y: scroll;
overflow-x: hidden;
}
@@ -1477,4 +1477,15 @@ label.error {
color: #8b8989;
font-weight: 500;
line-height: 1;
}
.modal .btn.btn-icon .svg-icon:hover {
color: #fff;
background-color: #c18948;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px;
}

View File

@@ -109,7 +109,7 @@
// $(this).removeClass('active');
// })
}
}, 4000);
}, 4000);.
setInterval(function() {
userList();

View File

@@ -249,7 +249,7 @@
</div>
<div class="col-md-6 my-3 {{dNone($alternativeInvestmentFund->alternativeInvestmentFund->return_on_investment_irr_dpi_rvpi_tvpi )}}">
<div class="veiw_detials_area">
<label> <b class='fw-bold'>Return On Investment(IRR)</b>: {{$alternativeInvestmentFund->alternativeInvestmentFund->return_on_investment_irr_dpi_rvpi_tvpi ?? 'N/A'}}</label>
<label> <b class='fw-bold'>Return On Investment(IRR)</b>: {{$alternativeInvestmentFund->alternativeInvestmentFund->return_on_investment_irr_dpi_rvpi_tvpi ?? 'N/A'}}%</label>
</div>
</div>
<div class="col-md-6 my-3 {{dNone($alternativeInvestmentFund->alternativeInvestmentFund->valuation_per_sector)}}">

View File

@@ -349,7 +349,7 @@
name="view_class_of_units" value="" id="view_class_of_units"></span>
</div>
<div class="col-md-6 fv-row">
<label class="required fs-6 fw-semibold mb-2 m-2">Statement reports</label>
<label class="fs-6 fw-semibold mb-2 m-2">Statement reports</label>
{{-- <input type="file" class="form-control form-control-solid" name="statement_reports[]"
value="" id="statement_reports_update" multiple></span> --}}
<div id="statement_reports_container_view">

View File

@@ -180,7 +180,7 @@
</div>
<div class="col-md-6 fv-row">
<label class="required fs-6 fw-semibold mb-2 m-2">Statement reports</label>
<label class="fs-6 fw-semibold mb-2 m-2">Statement reports</label>
{{-- <input type="file" class="form-control form-control-solid" name="statement_reports[]"
value="" id="statement_reports_update" multiple></span> --}}
<div id="statement_reports_container_view">

View File

@@ -201,12 +201,13 @@
<p>Website of the fund</p>
{{-- <span>{{ $longOnlyEquityFund->website_of_the_fund ?? '--' }}</span> --}}
<span>
@if($longOnlyEquityFund->website_of_the_fund)
<a href="{{'http://'.$longOnlyEquityFund->website_of_the_fund}}" target=”_blank”>{{$longOnlyEquityFund->website_of_the_fund}}<a>
@else
{{'--'}}
@if ($longOnlyEquityFund->website_of_the_fund)
<a href="{{ 'http://' . $longOnlyEquityFund->website_of_the_fund }}"
target=”_blank”>{{ $longOnlyEquityFund->website_of_the_fund }}<a>
@else
{{ '--' }}
@endif
</span>
</span>
</div>
</div>
<div class="tables row">
@@ -336,7 +337,7 @@
<p> Rera Complied Property </p>
<span>{{ $longOnlyEquityFund->rera_complied_property ?? '--' }}</span>
</div>
</div>
</div>
</div>
@@ -367,7 +368,7 @@
<div class="tables row">
<div class="col-md-4">
<p>Hurdle rate</p>
<span>{{ $longOnlyEquityFund->hurdle_rate.' %' ?? '--' }}</span>
<span>{{ $longOnlyEquityFund->hurdle_rate . ' %' ?? '--' }}</span>
</div>
<div class="col-md-4">
<p>Other expenses</p>

View File

@@ -6,14 +6,15 @@
<div>
<h5>Presentation</h5>
<i class="fa fa-download" style="font-size:24px"></i>
<a href="{{ $productData == false ? '#' : ($productData->presentation == null ? '#':$productData->presentation) }}"
class="card-link">{{ $productData == false ? 'PDF Not Available' : ($productData->presentation == null ? 'PDF Not Available':'PDF') }}</a>
<a href="{{ $productData == false ? '#' : ($productData->presentation == null ? '#' : $productData->presentation) }}"
class="card-link">{{ $productData == false ? 'PDF Not Available' : ($productData->presentation == null ? 'PDF Not Available' : 'PDF') }}</a>
</div>
<div>
<h5>Fact Sheet</h5>
<i class="fa fa-download" style="font-size:24px"></i>
<a href="{{ $productData == false ? '#' : ($productData->fact_sheet == null ? '#':$productData->fact_sheet) }}"
class="card-link"> {{ $productData == false ? 'PDF Not Available' : ($productData->fact_sheet == null ? 'PDF Not Available':'PDF') }}</a>
<a href="{{ $productData == false ? '#' : ($productData->fact_sheet == null ? '#' : $productData->fact_sheet) }}"
class="card-link">
{{ $productData == false ? 'PDF Not Available' : ($productData->fact_sheet == null ? 'PDF Not Available' : 'PDF') }}</a>
</div>
</div>
</div>
@@ -33,4 +34,4 @@
});
})
</script>
@endsection
@endsection