Questions tagged [admin-interface]
12 questions
20
votes
4 answers
Is there a Rails admin interface that supports MongoDB and Devise?
I recently switched to MongoDB and I am wondering if I can continue using any of the popular admin interface solutions, such as ActiveScaffold and Typus?

picardo
- 24,530
- 33
- 104
- 151
9
votes
4 answers
What is your favourite Rails admin tool and why?
What is your favorite Rails admin tool and why? By admin tool, I'm referring to those that let some users add records for all the tables, like the tool shipped with Django.
This question is subjective and I believe the matter is subjective, but I…

Pablo Fernandez
- 279,434
- 135
- 377
- 622
2
votes
1 answer
Rails3 + Typus: display habtm relationship as checkboxes
I'm managing my admin backend with Typus
I want to add a field with a checkbox for each category.
I used this code:
Post:
fields:
default: name, description, user, categories
list: name, description, user, categories
form: name,…

pasine
- 11,311
- 10
- 49
- 81
1
vote
0 answers
inherit to admin controller, with Admin_interface, inherited_resources and Rails 3
I need a backend for administration, I tried RailsAdmin and ActiveAdmin, but the limited level of customization and found the gem admin_interface which gave me the options I wanted.
This is the structure of my project
├── app
│ ├── assets
│ ├──…

Benito Anagua
- 11
- 4
1
vote
3 answers
Suggestions for developing a threaded tcp based admin interface
I've built a very simple TCP server (in python) that when queried, returns various system level statistics of the host OS running said script.
As part of my experimentation and goal to gain knowledge of python and its available libraries; i would…

Python Newbie
- 11
- 1
1
vote
0 answers
Administration interface for REST api
I made several apps for myself, with simple REST api's, and when I needed to blacklist a user, or something else "administrator-like-actions", I just do it directly in the MySQL database.
Now I'm working on a project for a client, who wants an…

curly_brackets
- 5,491
- 15
- 58
- 102
1
vote
2 answers
Codeigniter same admin and public interface
I am planning to build a site which will have members and member uploaded content. I need to choose between the following:
a) A separate interface for admins and users
b) Same interface for admins and users
For example, a particular module…

WebNovice
- 2,230
- 3
- 24
- 40
0
votes
1 answer
MarkLogic Admin interface does not accept credentials
We are using MarkLogic 9.0.8.2
It was working fine and then suddenly when i was configuring failover for security database with master & replica forests on multiple nodes, i started getting issue with not accepting credentials.
I looked at logs and…

Manish Joisar
- 1,256
- 3
- 23
- 47
0
votes
1 answer
MarkLogic Admin interface - stop working with security forest not available
MarkLogic 9.0.8.2
Configured Cluster
It was working fine till we started configuring security forest on cluster.
Now we are not able to access MarkLogic Admin Interface.
Log file shows as follows
ErrorLog.txt
2019-03-28 08:31:28.713 Warning: Forest…

Manish Joisar
- 1,256
- 3
- 23
- 47
0
votes
2 answers
Restoring Typus plugin after changing DB Schema
I installed Typus plugin (http://intraducibles.com/projects/typus) for my app and I love it. But along the development of the app I frequently do migrations and change the DB Schema and relationships, and then the plugin fails. Is there a way to…

Ben Orozco
- 4,361
- 4
- 33
- 49
0
votes
2 answers
How to create two admin view and separating the model between 2 admin views by using rails_admin gem
I want to create two admin views by using rails_admin gem. I created one admin and i specify the path( mount RailsAdmin::Engine => '/admin', :as => 'rails_admin' in routes.rb).
Similarly I specified another path (mount RailsAdmin::Engine =>…
-1
votes
1 answer
How to create user interface for rest api using spring boot
I have created a Rest API using springBoot and using Postman for creating GET, POST, PUT ,Delete Requests.
To display data to enduser i am using Angular .
My Application is Read only for enduser , and hence i am calling only Get Requests from my…

VJain
- 1,027
- 7
- 17
- 37