File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -127,6 +127,6 @@ Separation of protocol layer and implementation layer allows independent evoluti
127127
128128## Next Steps
129129
130- - Check out [ Quick Start] ( /en/docs /01-quickstart) to run your first application in 5 minutes
130+ - Check out [ Quick Start] ( .. /01-quickstart) to run your first application in 5 minutes
131131- Read [ The Manifesto] ( ./manifesto ) to understand the design principles in depth
132132- Learn about [ The AI Codex] ( ./ai-codex ) to improve development efficiency
Original file line number Diff line number Diff line change @@ -127,6 +127,6 @@ ObjectOS 是粘合 ObjectQL 和 ObjectUI 的运行时平台:
127127
128128## 下一步
129129
130- - 查看[ 快速开始] ( /zh-CN/docs /01-quickstart) ,5 分钟内运行第一个应用
130+ - 查看[ 快速开始] ( .. /01-quickstart) ,5 分钟内运行第一个应用
131131- 阅读[ 架构宪法] ( ./manifesto ) ,深入理解设计原则
132132- 了解[ AI 协作指引] ( ./ai-codex ) ,提升开发效率
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ A complete personal finance tracker built with ObjectStack's local-first archite
3737
3838** Option 1: Install from .oos Package**
3939
40+ > ** Note** : The download URLs below are placeholders for demonstration purposes. Please check the official ObjectStack repository for actual demo packages.
41+
4042``` bash
4143# Download the package
4244curl -O https://demos.objectstack.io/accounting-app.oos
@@ -593,6 +595,8 @@ Both demos include sample data for exploration:
593595
594596## Download Links
595597
598+ > ** Note** : These are placeholder URLs for documentation purposes. Actual demo resources will be available through the ObjectStack GitHub repositories.
599+
596600### Accounting App
597601- ** Source Code** : [ github.com/objectstack/demo-accounting-app] ( https://github.com/objectstack/demo-accounting-app )
598602- ** .oos Package** : [ demos.objectstack.io/accounting-app.oos] ( https://demos.objectstack.io/accounting-app.oos )
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ description: 探索可直接运行的 ObjectStack 示例应用
3737
3838** 选项 1: 从 .oos 包安装**
3939
40+ > ** 注意** : 下面的下载 URL 仅为演示目的的占位符。请查看 ObjectStack 官方仓库获取实际的示例包。
41+
4042``` bash
4143# 下载包
4244curl -O https://demos.objectstack.io/accounting-app.oos
@@ -593,6 +595,8 @@ export default {
593595
594596## 下载链接
595597
598+ > ** 注意** : 这些是文档目的的占位符 URL。实际的示例资源将通过 ObjectStack GitHub 仓库提供。
599+
596600### 记账应用
597601- ** 源码** : [ github.com/objectstack/demo-accounting-app] ( https://github.com/objectstack/demo-accounting-app )
598602- ** .oos 包** : [ demos.objectstack.io/accounting-app.oos] ( https://demos.objectstack.io/accounting-app.oos )
Original file line number Diff line number Diff line change @@ -601,13 +601,13 @@ docker-compose restart
601601
602602## Next Steps
603603
604- - Explore [ Multi-tenant Configuration] ( /docs /04-objectos/multi-tenant)
605- - Learn about [ Security & Permissions] ( /docs /04-objectos/security)
606- - Set up [ Monitoring & Logging] ( /docs /04-objectos/monitoring)
607- - Configure [ High Availability] ( /docs /04-objectos/ha-setup)
604+ - Explore [ Multi-tenant Configuration] ( .. /04-objectos/multi-tenant)
605+ - Learn about [ Security & Permissions] ( .. /04-objectos/security)
606+ - Set up [ Monitoring & Logging] ( .. /04-objectos/monitoring)
607+ - Configure [ High Availability] ( .. /04-objectos/ha-setup)
608608
609609## Getting Help
610610
611- - 📚 [ Enterprise Documentation] ( /docs /07-commercial)
611+ - 📚 [ Enterprise Documentation] ( .. /07-commercial)
612612- 💼 [ Enterprise Support] ( https://objectstack.io/enterprise )
613613- 🔧 [ Professional Services] ( https://objectstack.io/services )
Original file line number Diff line number Diff line change @@ -601,13 +601,13 @@ docker-compose restart
601601
602602## 下一步
603603
604- - 探索[ 多租户配置] ( /zh-CN/docs /04-objectos/multi-tenant)
605- - 了解[ 安全与权限] ( /zh-CN/docs /04-objectos/security)
606- - 设置[ 监控与日志] ( /zh-CN/docs /04-objectos/monitoring)
607- - 配置[ 高可用性] ( /zh-CN/docs /04-objectos/ha-setup)
604+ - 探索[ 多租户配置] ( .. /04-objectos/multi-tenant)
605+ - 了解[ 安全与权限] ( .. /04-objectos/security)
606+ - 设置[ 监控与日志] ( .. /04-objectos/monitoring)
607+ - 配置[ 高可用性] ( .. /04-objectos/ha-setup)
608608
609609## 获取帮助
610610
611- - 📚 [ 企业文档] ( /zh-CN/docs /07-commercial)
611+ - 📚 [ 企业文档] ( .. /07-commercial)
612612- 💼 [ 企业支持] ( https://objectstack.io/enterprise )
613613- 🔧 [ 专业服务] ( https://objectstack.io/services )
Original file line number Diff line number Diff line change @@ -148,6 +148,11 @@ export default {
148148 dueDate: {
149149 type: " date" ,
150150 label: " Due Date"
151+ },
152+ completedAt: {
153+ type: " datetime" ,
154+ label: " Completed At" ,
155+ readonly: true
151156 }
152157 },
153158 list_views: {
@@ -385,9 +390,9 @@ Congratulations! You've built your first ObjectStack application.
385390
386391### Learn More
387392
388- - Explore [ ObjectQL] ( /docs /02-objectql) - Advanced data modeling
389- - Master [ ObjectUI] ( /docs /03-objectui) - Complex UI patterns
390- - Study [ Triggers & Logic] ( /docs /02-objectql/triggers) - Business rules
393+ - Explore [ ObjectQL] ( .. /02-objectql) - Advanced data modeling
394+ - Master [ ObjectUI] ( .. /03-objectui) - Complex UI patterns
395+ - Study [ Triggers & Logic] ( .. /02-objectql/triggers) - Business rules
391396
392397### Try These Projects
393398
Original file line number Diff line number Diff line change @@ -148,6 +148,11 @@ export default {
148148 dueDate: {
149149 type: " date" ,
150150 label: " 截止日期"
151+ },
152+ completedAt: {
153+ type: " datetime" ,
154+ label: " 完成时间" ,
155+ readonly: true
151156 }
152157 },
153158 list_views: {
@@ -385,9 +390,9 @@ dueDate: {
385390
386391### 深入学习
387392
388- - 探索 [ ObjectQL] ( /zh-CN/docs /02-objectql) - 高级数据建模
389- - 掌握 [ ObjectUI] ( /zh-CN/docs /03-objectui) - 复杂 UI 模式
390- - 学习 [ 触发器与逻辑] ( /zh-CN/docs /02-objectql/triggers) - 业务规则
393+ - 探索 [ ObjectQL] ( .. /02-objectql) - 高级数据建模
394+ - 掌握 [ ObjectUI] ( .. /03-objectui) - 复杂 UI 模式
395+ - 学习 [ 触发器与逻辑] ( .. /02-objectql/triggers) - 业务规则
391396
392397### 尝试这些项目
393398
You can’t perform that action at this time.
0 commit comments