No description
Find a file
Nextcloud bot 6fcb2567e8
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-02-07 01:56:26 +00:00
.devcontainer fix: Use devcontainer with php v8.2 2024-12-04 09:24:19 +01:00
.github ci(actions): Pin all used versions 2026-02-04 05:36:42 +00:00
.scripts chore: Add SPDX header 2024-08-07 20:39:40 +02:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:10:15 +00:00
appinfo chore: Update max server version 2026-01-30 04:55:33 +00:00
build chore: Add SPDX header 2024-08-07 20:39:40 +02:00
css fix: run lint and psalm 2026-01-12 05:41:19 +00:00
cypress fix(test): target first submit item 2026-02-03 08:59:25 +00:00
docs chore(tooling): add krankerl config 2023-02-27 10:54:57 +01:00
img feat: added material design icon picker for contexts 2024-03-27 15:54:05 +01:00
l10n fix(l10n): Update translations from Transifex 2026-02-07 01:56:26 +00:00
lib fix: getId is supposed to return string 2026-01-30 10:23:05 +01:00
LICENSES ci: Add REUSE check 2024-08-08 15:36:21 +02:00
screenshots chore(version bump): prepare v0.6.5 2023-12-18 16:09:42 +01:00
src fix: Cast share id to string, fix test 2026-02-03 03:32:50 +00:00
templates fix: run lint and psalm 2026-01-12 05:41:19 +00:00
tests fix(CI): make unit tests PHP 8.5 compatibly 2026-01-09 18:15:23 +01:00
vendor-bin ci(php-scoper): fix PHP 8.5 compatibility 2026-01-09 11:20:01 +01:00
.eslintrc.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
.git-blame-ignore-revs docs(git): coding-standard bump 2025-02-10 12:22:29 +01:00
.gitattributes chore: Add SPDX header 2024-08-05 20:51:55 +02:00
.gitignore build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
.l10nignore chore: Add SPDX header 2024-08-05 20:51:55 +02:00
.lib-vendor-organizer.php build(scoper): fix lib-vendor-organizer run on MacOS 2025-12-05 10:48:16 +01:00
.nextcloudignore build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
.php-cs-fixer.dist.php build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
.scoper-production-dependencies build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
AUTHORS.md chore: Add SPDX header 2024-08-08 15:35:37 +02:00
babel.config.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
CHANGELOG.md build(release): v2.0.0-beta.1 2026-01-12 08:49:29 +00:00
composer.json build(deps): drop NC 30 2025-12-11 22:08:03 +01:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2026-02-04 06:19:24 +00:00
COPYING Initial commit 2021-09-22 16:38:17 +02:00
cypress.config.mjs fix: npm install, resolve cypress config 2026-01-12 06:51:51 +00:00
krankerl.toml chore: Add SPDX header 2024-08-05 20:51:55 +02:00
Makefile chore: Add SPDX header 2024-08-05 20:51:55 +02:00
openapi.json enh(Sharing): backend infrastructre for read-only link shares 2026-01-12 05:40:55 +00:00
package-lock.json fix: npm install 2026-02-04 06:40:15 +00:00
package.json fix(deps): update dependency @nextcloud/dialogs to ^7.2.0 2026-02-04 06:18:54 +00:00
phpunit.integration.xml chore: Add SPDX header 2024-08-05 20:51:55 +02:00
phpunit.xml chore: Add SPDX header 2024-08-05 20:51:55 +02:00
psalm.xml build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
README.md docs: Add REUSE status badge 2024-08-08 15:37:27 +02:00
renovate.json ci(actions): Pin all used versions 2026-02-04 05:36:42 +00:00
REUSE.toml build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
scoper.inc.php build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
stylelint.config.cjs perf: Switch to vite for bundling 2025-06-25 18:40:39 +01:00
tsconfig.json fix: update tsconfig 2025-06-25 18:40:39 +01:00
update-scoper-dependencies.sh build(dependencies): scope dependencies in lib/Vendor 2025-11-04 21:07:56 +01:00
vite.config.ts feat: activity support 2025-10-13 14:46:45 +01:00

Nextcloud App »Tables«

REUSE status

Manage data the way you need it.

With this app you are able to create your own tables with individual columns. You can start with a template or from scratch and add your wanted columns.

Documentation

General information

https://github.com/nextcloud/tables/wiki

Administration

https://github.com/nextcloud/tables/wiki/Administration

API

https://github.com/nextcloud/tables/wiki/API

Developer information

https://github.com/nextcloud/tables/wiki/Developing

Installation/Update

The app can be installed through the app store within Nextcloud. You can also download the latest release from the release page.

Install from source code

To build you will need to have Node.js and Composer installed.

  • Clone repository into the app-directory: cd /path/to/apps && git clone https://github.com/nextcloud/tables && cd tables
  • Install PHP dependencies: composer install --no-dev
  • Install JS dependencies: npm ci
  • Build JavaScript for the frontend
    • Development build npm run dev or
    • Watch for changes npm run watch or
    • Production build npm run build