-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtool_details.php
56 lines (50 loc) · 1.62 KB
/
tool_details.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
// App Name: Custom GPT
// Author: DigiForge
// App version: 1.0
// App url: https://digiforge.in
// History template
$page_session = \Config\Services::session(); // starting and storing the user session
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
<h1>Usage details</h1>
</div>
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="<?= base_url('history/usage_history'); ?>">Home</a></li>
<li class="breadcrumb-item active">Usage details</li>
</ol>
</div>
</div>
</div><!-- /.container-fluid -->
</section>
<!-- Main content -->
<section class="content">
<!-- Default box -->
<?php foreach ($usage_detail as $data) : ?>
<div class="card">
<div class="card-header">
<h3 class="card-title"><?= $data->tool; ?></h3>
<h3 class="card-title float-right"><a href="<?= base_url('history/usage_history'); ?>">View History</a></h3>
</div>
<div class="card-body">
<span><?= $data->date; ?></span>
<hr>
<p><?= $data->prompt; ?></p>
<hr>
<pre><?= $data->result; ?></pre>
</div>
<!-- /.card-body -->
</div>
<?php endforeach; ?>
<!-- /.card -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->