tirbofish/kitgit
main / src / web / templates.rs · 21192 bytes
src/web/templates.rs
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
use crate::og::SocialMeta;
use crate::db::models::{
Access, BranchRule, CommitDay, GpgKey, Issue, Label, Milestone, Notification, PullRequest,
Release, RepoMirror, Repository, SshKey, User, UserEmail,
};
use crate::db::DeployKey;
use askama::Template;
use askama_web::WebTemplate;
use chrono::{DateTime, Utc};
use uuid::Uuid;
// ── view models ──────────────────────────────────────────────────────────────
pub struct ActivityRow {
pub kind: String,
/// Text before an optional issue/PR reference (e.g. `"commented on "`).
pub summary: String,
/// Linked phrase such as `"issue #1"` / `"pull #2"`.
pub ref_label: Option<String>,
pub ref_href: Option<String>,
pub actor_username: Option<String>,
pub actor_avatar: Option<String>,
pub repo_owner: Option<String>,
pub repo_name: Option<String>,
pub created_at: DateTime<Utc>,
}
pub struct ReactionView {
pub emoji: String,
pub label: String,
pub count: i64,
pub mine: bool,
}
pub struct CommentView {
pub id: Uuid,
pub author: User,
pub avatar_url: String,
pub body_html: String,
pub created_at: DateTime<Utc>,
pub reactions: Vec<ReactionView>,
}
pub struct PullReviewView {
pub id: Uuid,
pub reviewer: User,
pub avatar_url: String,
pub state: String,
pub body: String,
pub body_html: String,
pub created_at: DateTime<Utc>,
}
impl PullReviewView {
pub fn state_label(&self) -> &'static str {
match self.state.as_str() {
"approved" => "approved",
"changes_requested" => "changes requested",
_ => "commented",
}
}
pub fn state_class(&self) -> &'static str {
match self.state.as_str() {
"approved" => "kg-badge--approved",
"changes_requested" => "kg-badge--changes",
_ => "kg-badge--commented",
}
}
}
pub struct DiffFileView {
pub path: String,
pub anchor: String,
pub additions: u32,
pub deletions: u32,
pub html: String,
pub truncated: bool,
pub total_lines: usize,
pub binary: bool,
}
pub struct TreeEntryView {
pub name: String,
pub path: String,
pub is_dir: bool,
/// Last commit that touched this path (summary).
pub commit_message: String,
/// Formatted timestamp for that commit.
pub commit_time: String,
}
pub struct CommitView {
pub id: String,
pub short_id: String,
pub message: String,
pub author: String,
pub email: String,
/// Kitgit username when the commit email matches a known account.
pub author_username: Option<String>,
pub time: i64,
/// True when a signature blob was present on the commit (SSH or GPG).
pub signed: bool,
pub verified: bool,
pub verify_kind: String,
pub verify_fingerprint: String,
pub verify_fingerprint_label: String,
pub verified_at: String,
}
impl CommitView {
pub fn verify_kind_label(&self) -> &'static str {
match self.verify_kind.as_str() {
"gpg" => "GPG",
"ssh" => "SSH",
_ => "Unknown",
}
}
pub fn time_display(&self) -> String {
format_unix_time(self.time)
}
}
/// Human-readable UTC date/time from a Unix timestamp (seconds).
pub fn format_unix_time(secs: i64) -> String {
chrono::DateTime::from_timestamp(secs, 0)
.map(|dt| dt.format("%Y-%m-%d %H:%M").to_string())
.unwrap_or_default()
}
pub struct CollaboratorView {
pub user: User,
pub role: String,
pub avatar_url: String,
}
pub struct WebhookView {
pub id: Uuid,
pub url: String,
pub has_secret: bool,
pub events_label: String,
pub active: bool,
pub created_at: String,
}
pub struct WebhookDeliveryView {
pub event: String,
pub action: String,
pub success: bool,
pub status_label: String,
pub webhook_url: String,
pub created_at: String,
}
pub struct LabelOption {
pub label: Label,
pub selected: bool,
}
pub struct MilestoneOption {
pub milestone: Milestone,
pub selected: bool,
}
pub struct IssueListItem {
pub issue: Issue,
pub labels: Vec<Label>,
pub milestone: Option<Milestone>,
}
pub struct PullListItem {
pub pull: PullRequest,
pub labels: Vec<Label>,
pub milestone: Option<Milestone>,
}
pub struct LanguageStatView {
pub name: String,
pub percent: f64,
pub color: String,
}
pub struct BranchRow {
pub name: String,
pub is_default: bool,
pub updated: String,
pub ahead: usize,
pub behind: usize,
pub pull_number: Option<i32>,
}
pub struct TagRow {
pub name: String,
pub short_id: String,
pub target: String,
pub message: String,
pub updated: String,
pub has_release: bool,
}
pub struct ReleaseAssetView {
pub id: Uuid,
pub filename: String,
pub size_label: String,
pub content_type: String,
}
// ── page templates ────────────────────────────────────────────────────────────
#[derive(Template, WebTemplate)]
#[template(path = "home.html")]
pub struct HomeTemplate {
pub viewer: Option<User>,
pub motd: String,
pub my_repos: Vec<Repository>,
pub activities: Vec<ActivityRow>,
pub social: SocialMeta,
}
pub struct ExploreRepo {
pub owner: String,
pub repo: Repository,
}
pub struct ExploreIssueHit {
pub owner: String,
pub repo_name: String,
pub number: i32,
pub title: String,
pub state: String,
pub visibility: String,
pub updated_at: DateTime<Utc>,
}
pub struct ExplorePullHit {
pub owner: String,
pub repo_name: String,
pub number: i32,
pub title: String,
pub state: String,
pub visibility: String,
pub updated_at: DateTime<Utc>,
}
#[derive(Template, WebTemplate)]
#[template(path = "explore.html")]
pub struct ExploreTemplate {
pub viewer: Option<User>,
pub query: String,
pub search_type: String,
pub repos: Vec<ExploreRepo>,
pub users: Vec<User>,
pub issues: Vec<ExploreIssueHit>,
pub pulls: Vec<ExplorePullHit>,
pub social: SocialMeta,
}
#[derive(Template, WebTemplate)]
#[template(path = "login.html")]
pub struct LoginTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "signup.html")]
pub struct SignupTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
pub signups_enabled: bool,
pub signup_disabled_message: String,
pub invite: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "error.html")]
pub struct ErrorTemplate {
pub viewer: Option<User>,
pub status: u16,
pub message: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "new_repo.html")]
pub struct NewRepoTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "profile_settings.html")]
pub struct ProfileSettingsTemplate {
pub viewer: Option<User>,
pub user: User,
pub avatar_url: String,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "account_settings.html")]
pub struct AccountSettingsTemplate {
pub viewer: Option<User>,
pub user: User,
pub emails: Vec<UserEmail>,
pub sessions: Vec<SessionView>,
pub current_session_id: Option<Uuid>,
pub audit_entries: Vec<AuditEntryView>,
pub error: Option<String>,
pub message: Option<String>,
}
pub struct AuditEntryView {
pub action: String,
pub action_label: String,
pub ip: String,
pub user_agent: String,
pub metadata: String,
pub created_at: DateTime<Utc>,
}
#[derive(Template, WebTemplate)]
#[template(path = "mfa_challenge.html")]
pub struct MfaChallengeTemplate {
pub viewer: Option<User>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "mfa_settings.html")]
pub struct MfaSettingsTemplate {
pub viewer: Option<User>,
pub user: User,
pub enabled: bool,
pub pending: bool,
pub secret: Option<String>,
pub qr_data_uri: Option<String>,
pub recovery_codes: Option<Vec<String>>,
pub recovery_remaining: usize,
pub error: Option<String>,
pub message: Option<String>,
}
pub struct SessionView {
pub id: Uuid,
pub created_at: DateTime<Utc>,
pub last_seen_at: DateTime<Utc>,
pub user_agent: String,
pub ip_address: String,
pub is_current: bool,
}
#[derive(Template, WebTemplate)]
#[template(path = "keys_settings.html")]
pub struct KeysSettingsTemplate {
pub viewer: Option<User>,
pub keys: Vec<SshKey>,
pub gpg_keys: Vec<GpgKey>,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "profile.html")]
pub struct ProfileTemplate {
pub viewer: Option<User>,
pub profile: User,
pub avatar_url: String,
pub repos: Vec<Repository>,
pub starred: Vec<ExploreRepo>,
pub watched_activity: Vec<ActivityRow>,
pub graph: Vec<CommitDay>,
pub has_activity: bool,
pub is_self: bool,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_home.html")]
pub struct RepoHomeTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub owner_avatar: String,
pub clone_http: String,
pub clone_ssh: String,
pub branches: Vec<String>,
pub current_branch: String,
pub entries: Vec<TreeEntryView>,
pub readme_html: Option<String>,
pub languages: Vec<LanguageStatView>,
pub empty: bool,
pub latest_commit: Option<CommitView>,
pub commit_count: usize,
pub starred: bool,
pub watching: bool,
pub forked_from: Option<(String, String)>,
pub social: SocialMeta,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_tree.html")]
pub struct RepoTreeTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub path: String,
pub breadcrumbs: Vec<(String, String)>,
pub entries: Vec<TreeEntryView>,
pub readme_html: Option<String>,
pub latest_commit: Option<CommitView>,
pub commit_count: usize,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_blob.html")]
pub struct RepoBlobTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub path: String,
pub breadcrumbs: Vec<(String, String)>,
pub binary: bool,
pub size: usize,
pub content_html: Option<String>,
pub is_markdown: bool,
pub clone_http: String,
pub clone_ssh: String,
}
pub struct BlameLineView {
pub line_no: usize,
pub content: String,
pub commit_id: String,
pub short_id: String,
pub author: String,
pub time_display: String,
pub summary: String,
pub hunk_start: bool,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_blame.html")]
pub struct RepoBlameTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub path: String,
pub breadcrumbs: Vec<(String, String)>,
pub lines: Vec<BlameLineView>,
pub binary: bool,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_history.html")]
pub struct RepoHistoryTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub path: String,
pub breadcrumbs: Vec<(String, String)>,
pub commits: Vec<CommitView>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_commits.html")]
pub struct RepoCommitsTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub branch: String,
pub commits: Vec<CommitView>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_commit.html")]
pub struct RepoCommitTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub commit: CommitView,
pub message_html: String,
pub diff_html: String,
pub show_full: bool,
pub truncated: bool,
pub total_lines: usize,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_diff.html")]
pub struct RepoDiffTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub commit: CommitView,
pub diff_html: String,
pub show_full: bool,
pub truncated: bool,
pub total_lines: usize,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_branches.html")]
pub struct RepoBranchesTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<BranchRow>,
pub tags: Vec<TagRow>,
pub clone_http: String,
pub clone_ssh: String,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "issues_list.html")]
pub struct IssuesListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub issues: Vec<IssueListItem>,
pub labels: Vec<Label>,
pub milestones: Vec<Milestone>,
pub state_filter: String,
pub label_filter: Option<Uuid>,
pub milestone_filter: Option<Uuid>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "issue_new.html")]
pub struct IssueNewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub labels: Vec<Label>,
pub milestones: Vec<Milestone>,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "issue_view.html")]
pub struct IssueViewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub issue: Issue,
pub author: User,
pub author_avatar: String,
pub body_html: String,
pub comments: Vec<CommentView>,
pub labels: Vec<Label>,
pub label_options: Vec<LabelOption>,
pub milestone: Option<Milestone>,
pub milestone_options: Vec<MilestoneOption>,
pub can_triage: bool,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "pulls_list.html")]
pub struct PullsListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub pulls: Vec<PullListItem>,
pub labels: Vec<Label>,
pub milestones: Vec<Milestone>,
pub state_filter: String,
pub label_filter: Option<Uuid>,
pub milestone_filter: Option<Uuid>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "pull_new.html")]
pub struct PullNewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub branches: Vec<String>,
pub labels: Vec<Label>,
pub milestones: Vec<Milestone>,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
pub upstream: Option<(String, String)>,
}
#[derive(Template, WebTemplate)]
#[template(path = "pull_view.html")]
pub struct PullViewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub pull: PullRequest,
pub author: User,
pub author_avatar: String,
pub body_html: String,
pub comments: Vec<CommentView>,
pub reviews: Vec<PullReviewView>,
pub commits: Vec<CommitView>,
pub diff_files: Vec<DiffFileView>,
pub tab: String,
pub show_full: bool,
pub conversation_count: usize,
pub can_merge: bool,
pub merge_styles: Vec<String>,
pub labels: Vec<Label>,
pub label_options: Vec<LabelOption>,
pub milestone: Option<Milestone>,
pub milestone_options: Vec<MilestoneOption>,
pub can_triage: bool,
pub is_author: bool,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "labels_list.html")]
pub struct LabelsListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub labels: Vec<Label>,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "milestones_list.html")]
pub struct MilestonesListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub milestones: Vec<Milestone>,
pub state_filter: String,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "releases_list.html")]
pub struct ReleasesListTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub releases: Vec<Release>,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "release_new.html")]
pub struct ReleaseNewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
pub tag_name: String,
pub title: String,
pub body: String,
pub target: String,
pub is_prerelease: bool,
pub is_draft: bool,
pub branches: Vec<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "release_edit.html")]
pub struct ReleaseEditTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub release: Release,
pub error: Option<String>,
pub clone_http: String,
pub clone_ssh: String,
pub target: String,
pub branches: Vec<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "release_view.html")]
pub struct ReleaseViewTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub release: Release,
pub author: User,
pub author_avatar: String,
pub body_html: String,
pub assets: Vec<ReleaseAssetView>,
pub tag_short: String,
pub tag_target: String,
pub clone_http: String,
pub clone_ssh: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "repo_settings.html")]
pub struct RepoSettingsTemplate {
pub viewer: Option<User>,
pub owner: User,
pub repo: Repository,
pub access: Access,
pub collaborators: Vec<CollaboratorView>,
pub branches: Vec<String>,
pub branch_rules: Vec<BranchRule>,
pub mirror: Option<RepoMirror>,
pub deploy_keys: Vec<DeployKey>,
pub webhooks: Vec<WebhookView>,
pub webhook_deliveries: Vec<WebhookDeliveryView>,
pub clone_http: String,
pub clone_ssh: String,
pub is_site_admin: bool,
pub error: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "admin.html")]
pub struct AdminTemplate {
pub viewer: Option<User>,
pub users: Vec<User>,
pub user_query: String,
pub user_page: i64,
pub user_pages: i64,
pub user_total: i64,
pub motd: String,
pub announcement: String,
pub signups_enabled: bool,
pub signup_disabled_message: String,
pub invites: Vec<AdminInviteView>,
pub repos: Vec<AdminRepoView>,
pub repo_query: String,
pub repo_page: i64,
pub repo_pages: i64,
pub repo_total: i64,
pub stats: AdminStatsView,
pub flash: Option<String>,
}
#[derive(Template, WebTemplate)]
#[template(path = "admin_user_audit.html")]
pub struct AdminUserAuditTemplate {
pub viewer: Option<User>,
pub user: User,
pub audit_entries: Vec<AuditEntryView>,
}
pub struct AdminInviteView {
pub id: Uuid,
pub code: String,
pub created_at: DateTime<Utc>,
}
pub struct AdminRepoView {
pub id: Uuid,
pub owner: String,
pub name: String,
pub visibility: String,
pub archived: bool,
pub updated_at: DateTime<Utc>,
}
pub struct AdminStatsView {
pub user_count: i64,
pub repo_count: i64,
pub public_repo_count: i64,
pub recent_signups: i64,
pub active_invites: i64,
pub disk_label: String,
}
#[derive(Template, WebTemplate)]
#[template(path = "notifications.html")]
pub struct NotificationsTemplate {
pub viewer: Option<User>,
pub notifications: Vec<Notification>,
pub unread_count: i64,
}